@@ -11,7 +11,7 @@ class BindingTest extends TestCase
1111
1212 protected function _setUp ()
1313 {
14- $ this ->form = new FormBuilder ;
14+ $ this ->form = new FormBuilder () ;
1515 }
1616
1717 protected function _tearDown ()
@@ -128,7 +128,7 @@ public function testBindUnsetProperty()
128128
129129 public function testBindMagicProperty ()
130130 {
131- $ object = new MagicGetter ;
131+ $ object = new MagicGetter () ;
132132 $ this ->form ->bind ($ object );
133133
134134 $ expected = '<input type="text" name="not_magic" value="foo"> ' ;
@@ -167,8 +167,8 @@ public function testBindNestedArray()
167167 'city ' => 'Roswell ' ,
168168 'tree ' => [
169169 'has ' => [
170- 'nested ' => 'Bird '
171- ]
170+ 'nested ' => 'Bird ' ,
171+ ],
172172 ],
173173 ],
174174 ];
@@ -188,7 +188,7 @@ public function testBindNestedArrayWithMissingKey()
188188 $ array = [
189189 'address ' => [
190190 'tree ' => [
191- 'nested ' => 'Bird '
191+ 'nested ' => 'Bird ' ,
192192 ],
193193 ],
194194 ];
@@ -227,8 +227,8 @@ public function testBindNestedObject()
227227 'city ' => 'Roswell ' ,
228228 'tree ' => [
229229 'has ' => [
230- 'nested ' => 'Bird '
231- ]
230+ 'nested ' => 'Bird ' ,
231+ ],
232232 ],
233233 ],
234234 ]));
@@ -250,8 +250,8 @@ public function testBindNestedMixed()
250250 'city ' => 'Roswell ' ,
251251 'tree ' => json_decode (json_encode ([
252252 'has ' => [
253- 'nested ' => 'Bird '
254- ]
253+ 'nested ' => 'Bird ' ,
254+ ],
255255 ])),
256256 ],
257257 ];
@@ -407,7 +407,7 @@ public function testExplicitCheckOnRadioTakesPrecedenceOverBinding()
407407
408408 private function getStubObject ()
409409 {
410- $ obj = new stdClass ;
410+ $ obj = new stdClass () ;
411411
412412 $ obj->
email =
'[email protected] ' ;
413413 $ obj ->first_name = 'John ' ;
0 commit comments