Completed
Pull Request — master (#6)
by Pieter
45:15 queued 20:13
created
src/Spec/v3/AbstractObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
      */
155 155
     public function toArray()
156 156
     {
157
-        $vars = (function ($that) {
157
+        $vars = (function($that) {
158 158
             // Only public variables
159 159
             return get_object_vars($that);
160 160
         })->bindTo(null, null)($this);
Please login to merge, or discard this patch.
tests/Spec/AbstractObjectUnitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@
 block discarded – undo
216 216
             'x-Bar-baz'        => 'e',
217 217
             'x-bar-baz-foo'    => 'f',
218 218
         ];
219
-        $actual   = $obj->toArray();
219
+        $actual = $obj->toArray();
220 220
 
221 221
         $this->assertEquals($expected, $actual);
222 222
     }
Please login to merge, or discard this patch.