Passed
Push — master ( bb53dc...70c0f0 )
by Paul
03:03
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/IteratorTrait.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
         $this->CoreTrait_fireEvents($this, __CLASS__, __METHOD__, __TRAIT__);
44 44
 
45 45
         $this->CoreTrait_getCoreObject()
46
-             ->getObject()
47
-             ->next()
46
+                ->getObject()
47
+                ->next()
48 48
         ;
49 49
 
50 50
         return $this;
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         $this->CoreTrait_fireEvents($this, __CLASS__, __METHOD__, __TRAIT__);
66 66
 
67 67
         $object = $this->CoreTrait_getCoreObject()
68
-                       ->getObject()
68
+                        ->getObject()
69 69
         ;
70 70
 
71 71
         if ($this->CoreTrait_getCoreObject()->hasMethod('rewind') && !$object instanceof \Generator) {
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
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     {
57 57
         if (!$this->boundObject && $this->hasRetriever()) {
58 58
             $retriever         = $this->retriever;
59
-            $this->boundObject =  $retriever($this->object);
59
+            $this->boundObject = $retriever($this->object);
60 60
         }
61 61
 
62 62
         return ($this->hasRetriever() && $useRetriever) ? $this->boundObject : $this->object;
Please login to merge, or discard this patch.