From 16218800a92ee8c8fd6575fd789622210335a911 Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Tue, 6 Jul 2010 10:19:49 -0400 Subject: [PATCH] whitespace cleanup. --- test/MustacheObjectSectionTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/MustacheObjectSectionTest.php b/test/MustacheObjectSectionTest.php index 58d4286..f9ae45b 100644 --- a/test/MustacheObjectSectionTest.php +++ b/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]; }