Passed
Push — main ( 3d6ec5...ba44ab )
by Dimitri
03:04
created
src/Http/MiddlewareQueue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      */
233 233
     public function seek(int $position): void
234 234
     {
235
-        if (! isset($this->queue[$position])) {
235
+        if (!isset($this->queue[$position])) {
236 236
             throw new OutOfBoundsException(sprintf('Invalid seek position (%s).', $position));
237 237
         }
238 238
 
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
      */
253 253
     public function current(): MiddlewareInterface
254 254
     {
255
-        if (! isset($this->queue[$this->position])) {
255
+        if (!isset($this->queue[$this->position])) {
256 256
             throw new OutOfBoundsException(sprintf('Position actuelle non valide (%s).', $this->position));
257 257
         }
258 258
 
Please login to merge, or discard this patch.
src/Middlewares/BaseMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $this->path = $path;
36 36
 
37 37
         foreach ($this->arguments as $argument => $value) {
38
-            if (! is_string($argument)) {
38
+            if (!is_string($argument)) {
39 39
                 continue;
40 40
             }
41 41
 
Please login to merge, or discard this patch.