Passed
Push — master ( a4ddd3...82bd79 )
by Alex
06:44
created
Mezon/Router/Tests/Simple/ExtractParametersUnitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Mezon\Router\Tests\Simple;
4 4
 
5 5
 use Mezon\Router\RouterInterface;
Please login to merge, or discard this patch.
Mezon/Router/Tests/Simple/FetchActionsUnitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Mezon\Router\Tests\Simple;
4 4
 
5 5
 use PHPUnit\Framework\TestCase;
Please login to merge, or discard this patch.
Mezon/Router/Tests/Simple/AddRouteUnitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Mezon\Router\Tests\Simple;
4 4
 
5 5
 use Mezon\Router\RouterInterface;
Please login to merge, or discard this patch.
Mezon/Router/Tests/Simple/StaticRoutesUnitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Mezon\Router\Tests\Simple;
4 4
 
5 5
 use Mezon\Router\RouterInterface;
Please login to merge, or discard this patch.
Mezon/Router/Tests/Simple/ReverseRouteUnitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Mezon\Router\Tests\Simple;
4 4
 
5 5
 use Mezon\Router\RouterInterface;
Please login to merge, or discard this patch.
Mezon/Router/Tests/Simple/DynamicRoutesInvalidCasesUnitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Mezon\Router\Tests\Simple;
4 4
 
5 5
 use Mezon\Router\RouterInterface;
Please login to merge, or discard this patch.
Mezon/Router/Tests/Simple/GetCallbackUnitTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Mezon\Router\Tests\Simple;
4 4
 
5 5
 use PHPUnit\Framework\TestCase;
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         // setup
51 51
         RouterUnitTestUtils::setRequestMethod('GET');
52 52
         $router = new SimpleRouter();
53
-        $router->addRoute($route, function () {
53
+        $router->addRoute($route, function() {
54 54
             return 'route result';
55 55
         });
56 56
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     {
73 73
         // setup
74 74
         $router = new SimpleRouter();
75
-        $router->addRoute('existing-route', function () {
75
+        $router->addRoute('existing-route', function() {
76 76
             return 'existing route result';
77 77
         });
78 78
 
Please login to merge, or discard this patch.
Mezon/Router/Tests/Simple/UnexistingRouteUnitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Mezon\Router\Tests\Simple;
4 4
 
5 5
 use Mezon\Router\RouterInterface;
Please login to merge, or discard this patch.
Mezon/Router/RouterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Mezon\Router;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.