Passed
Push — master ( babf2d...aaf241 )
by Paul
02:08
created
src/CoreObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $this->object = $object;
26 26
 
27 27
         $this->setRetriever(
28
-            function ($object) {
28
+            function($object) {
29 29
                 return $object;
30 30
             }
31 31
         );
Please login to merge, or discard this patch.
src/Traits/IteratorTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
         $this->fireEvents_CoreTrait($this, __CLASS__, __METHOD__, __TRAIT__);
35 35
 
36 36
         $this->getCoreObject_CoreTrait()
37
-             ->getObject()
38
-             ->next();
37
+                ->getObject()
38
+                ->next();
39 39
 
40 40
         return $this;
41 41
     }
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
         $this->fireEvents_CoreTrait($this, __CLASS__, __METHOD__, __TRAIT__);
55 55
 
56 56
         $this->getCoreObject_CoreTrait()
57
-             ->getObject()
58
-             ->rewind();
57
+                ->getObject()
58
+                ->rewind();
59 59
 
60 60
         return $this;
61 61
     }
Please login to merge, or discard this patch.
src/Traits/ArrayAccessTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
         $this->fireEvents_CoreTrait($this, __CLASS__, __METHOD__, __TRAIT__);
35 35
 
36 36
         $this->getCoreObject_CoreTrait()
37
-             ->getObject()
38
-             ->offsetSet($offset, $value);
37
+                ->getObject()
38
+                ->offsetSet($offset, $value);
39 39
 
40 40
         return $this;
41 41
     }
@@ -45,8 +45,8 @@  discard block
 block discarded – undo
45 45
         $this->fireEvents_CoreTrait($this, __CLASS__, __METHOD__, __TRAIT__);
46 46
 
47 47
         $this->getCoreObject_CoreTrait()
48
-             ->getObject()
49
-             ->offsetUnset($offset);
48
+                ->getObject()
49
+                ->offsetUnset($offset);
50 50
 
51 51
         return $this;
52 52
     }
Please login to merge, or discard this patch.
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/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 ($this->getCoreObject_CoreTrait()->hasMethod('count')) {
25 25
             return $object->count();
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.