Parcourir la source

Merge branch 'release/0.2.5' into dev

Justin Hileman il y a 15 ans
Parent
commit
6dfb883789
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      test/MustacheObjectSectionTest.php

+ 4 - 4
test/MustacheObjectSectionTest.php

@@ -21,7 +21,7 @@ class MustacheObjectSectionTest extends PHPUnit_Framework_TestCase {
 
 class Alpha extends Mustache {
 	public $foo;
-	
+
 	public function __construct() {
 		$this->foo = new StdClass();
 		$this->foo->name = 'Foo';
@@ -31,17 +31,17 @@ class Alpha extends Mustache {
 
 class Beta extends Mustache {
 	protected $_data = array();
-	
+
 	public function __construct() {
 		$this->_data['foo'] = new StdClass();
 		$this->_data['foo']->name = 'Foo';
 		$this->_data['foo']->number = 1;
 	}
-	
+
 	public function __isset($name) {
 		return array_key_exists($name, $this->_data);
 	}
-	
+
 	public function __get($name) {
 		return $this->_data[$name];
 	}