Completed
Push — master ( 70c0f0...b0ad13 )
by Paul
02:27
created
src/Traits/GeneratorTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     protected function __setUp_GeneratorTrait(): void
19 19
     {
20 20
         $this->CoreTrait_getCoreObject()->setRetriever(
21
-            function ($object) {
21
+            function($object) {
22 22
                 foreach ($object as $key => $value) {
23 23
                     yield $key => $value;
24 24
                 }
Please login to merge, or discard this patch.
src/Traits/JsonSerializableTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,6 +34,6 @@
 block discarded – undo
34 34
             return $object->getArrayCopy();
35 35
         }
36 36
 
37
-        return (array)$object;
37
+        return (array) $object;
38 38
     }
39 39
 }
Please login to merge, or discard this patch.
src/CoreObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
     public function hasRetriever(): bool
48 48
     {
49
-        return (bool)$this->retriever;
49
+        return (bool) $this->retriever;
50 50
     }
51 51
 
52 52
     /**
Please login to merge, or discard this patch.