GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( d3d564...b12eee )
by
unknown
02:02
created
src/DataStructures/SplArrayObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
             $camelcaseStorage = [];
99 99
 
100 100
             foreach ($this->getArrayCopy() as $offset => $value) {
101
-                $camelcaseStorage[ camelcase($offset) ] = $value;
101
+                $camelcaseStorage[camelcase($offset)] = $value;
102 102
             }
103 103
 
104 104
             $this->exchangeArray($camelcaseStorage);
Please login to merge, or discard this patch.
src/DataStructures/SplArrayQueue.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         $arrayCopy = [];
106 106
 
107 107
         foreach ($this as $key => $value) {
108
-            $arrayCopy[ $key ] = $value;
108
+            $arrayCopy[$key] = $value;
109 109
         }
110 110
 
111 111
         return $arrayCopy;
Please login to merge, or discard this patch.
src/DataStructures/Traits/ArrayFunctionsTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         $arraySlices = [];
133 133
 
134 134
         foreach ($lengths as $key => $length) {
135
-            $arraySlices[ $key ] = array_slice($this->getArrayCopy(), 0, $length, $preserveKeys);
135
+            $arraySlices[$key] = array_slice($this->getArrayCopy(), 0, $length, $preserveKeys);
136 136
         }
137 137
 
138 138
         return $arraySlices;
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 
182 182
         $offset = 0;
183 183
         foreach ($sizes as $key => $limit) {
184
-            $arrayChunks[ $key ] = array_slice($this->getArrayCopy(), $offset, $limit, $preserveKeys);
184
+            $arrayChunks[$key] = array_slice($this->getArrayCopy(), $offset, $limit, $preserveKeys);
185 185
             $offset = $limit;
186 186
         }
187 187
 
Please login to merge, or discard this patch.