Passed
Push — main ( 109ace...7d6b92 )
by Dimitri
17:05
created
src/Http/MiddlewareQueue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
      */
252 252
     public function seek(int $position): void
253 253
     {
254
-        if (! isset($this->queue[$position])) {
254
+        if (!isset($this->queue[$position])) {
255 255
             throw new OutOfBoundsException(sprintf('Invalid seek position (%s).', $position));
256 256
         }
257 257
 
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
      */
272 272
     public function current(): MiddlewareInterface
273 273
     {
274
-        if (! isset($this->queue[$this->position])) {
274
+        if (!isset($this->queue[$this->position])) {
275 275
             throw new OutOfBoundsException(sprintf('Position actuelle non valide (%s).', $this->position));
276 276
         }
277 277
 
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 	{
345 345
 		foreach ($this->queue as $queue) {
346 346
 			if (is_string($queue) && !empty($this->groups[$queue])) {
347
-				if (! is_array($this->groups[$queue])) {
347
+				if (!is_array($this->groups[$queue])) {
348 348
 					continue;
349 349
 				}
350 350
 
Please login to merge, or discard this patch.