Passed
Push — 1.x ( 1de473...d64718 )
by Ulises Jeremias
02:40
created
Mbh/Collection/Traits/Sequenceable.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,8 +88,8 @@
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-    * @inheritDoc
92
-    */
91
+     * @inheritDoc
92
+     */
93 93
     public function first()
94 94
     {
95 95
         if ($this->isEmpty()) {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      */
105 105
     public function get(int $index)
106 106
     {
107
-        if (! $this->validIndex($index)) {
107
+        if (!$this->validIndex($index)) {
108 108
             throw new OutOfRangeException();
109 109
         }
110 110
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     public function insert(int $index, ...$values)
118 118
     {
119
-        if (! $this->validIndex($index) && $index !== count($this)) {
119
+        if (!$this->validIndex($index) && $index !== count($this)) {
120 120
             throw new OutOfRangeException();
121 121
         }
122 122
 
Please login to merge, or discard this patch.