Passed
Push — master ( 7aeea0...34af2a )
by Jelmer
47s
created
src/Session/Session.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace jschreuder\Middle\Session;
4 4
 
Please login to merge, or discard this patch.
src/Exception/AuthorizationException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace jschreuder\Middle\Exception;
4 4
 
Please login to merge, or discard this patch.
src/ApplicationStackInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace jschreuder\Middle;
4 4
 
Please login to merge, or discard this patch.
src/Router/RoutingProviderCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace jschreuder\Middle\Router;
4 4
 
Please login to merge, or discard this patch.
src/View/ViewInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace jschreuder\Middle\View;
4 4
 
Please login to merge, or discard this patch.
src/ServerMiddleware/SessionMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace jschreuder\Middle\ServerMiddleware;
4 4
 
Please login to merge, or discard this patch.
src/Controller/ControllerRunner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace jschreuder\Middle\Controller;
4 4
 
Please login to merge, or discard this patch.
src/Controller/CallableController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace jschreuder\Middle\Controller;
4 4
 
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
     public static function factoryFromCallable(callable $closure): callable
16 16
     {
17
-        return function () use ($closure) {
17
+        return function() use ($closure) {
18 18
             return self::fromCallable($closure);
19 19
         };
20 20
     }
Please login to merge, or discard this patch.
src/ApplicationStack.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace jschreuder\Middle;
4 4
 
Please login to merge, or discard this patch.