Completed
Pull Request — master (#2)
by Paul
03:15 queued 54s
created
src/Traits/GeneratorTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     protected function __setUp_GeneratorTrait()
20 20
     {
21 21
         $this->getCoreObject_CoreTrait()->setRetriever(
22
-            function ($object) {
22
+            function($object) {
23 23
                 foreach ($object as $key => $value) {
24 24
                     yield $key => $value;
25 25
                 }
Please login to merge, or discard this patch.
src/Traits/JsonSerializableTrait.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $this->fireEvents_CoreTrait($this, __CLASS__, __METHOD__, __TRAIT__);
26 26
 
27 27
         $object = $this->getCoreObject_CoreTrait()
28
-                       ->getObject();
28
+                        ->getObject();
29 29
 
30 30
         if ($this->getCoreObject_CoreTrait()->isArray()) {
31 31
             return $object;
Please login to merge, or discard this patch.
src/Traits/CountableTrait.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         $this->fireEvents_CoreTrait($this, __CLASS__, __METHOD__, __TRAIT__);
20 20
 
21 21
         $object = $this->getCoreObject_CoreTrait()
22
-                       ->getObject();
22
+                        ->getObject();
23 23
 
24 24
         if (
25 25
             $this->getCoreObject_CoreTrait()->isInstanceOf("\Traversable") &&
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
@@ -36,8 +36,8 @@  discard block
 block discarded – undo
36 36
         $this->fireEvents_CoreTrait($this, __CLASS__, __METHOD__, __TRAIT__);
37 37
 
38 38
         $this->getCoreObject_CoreTrait()
39
-             ->getObject()
40
-             ->next();
39
+                ->getObject()
40
+                ->next();
41 41
 
42 42
         return $this;
43 43
     }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $this->fireEvents_CoreTrait($this, __CLASS__, __METHOD__, __TRAIT__);
57 57
 
58 58
         $object = $this->getCoreObject_CoreTrait()
59
-                       ->getObject();
59
+                        ->getObject();
60 60
 
61 61
         if ($this->getCoreObject_CoreTrait()->hasMethod('rewind') && !$object instanceof \Generator) {
62 62
             $object->rewind();
Please login to merge, or discard this patch.