@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace Mezon\Router; |
4 | 4 | |
5 | 5 | /** |
@@ -102,12 +102,12 @@ discard block |
||
102 | 102 | $requestMethod . ' : ' |
103 | 103 | ]; |
104 | 104 | $hasRoutes = false; |
105 | - if (! empty($this->staticRoutes[$requestMethod])) { |
|
105 | + if (!empty($this->staticRoutes[$requestMethod])) { |
|
106 | 106 | $trace[] = implode(', ', array_keys($this->staticRoutes[$requestMethod])); |
107 | 107 | $trace[] = ', '; |
108 | 108 | $hasRoutes = true; |
109 | 109 | } |
110 | - if (! empty($this->paramRoutes[$requestMethod])) { |
|
110 | + if (!empty($this->paramRoutes[$requestMethod])) { |
|
111 | 111 | $items = []; |
112 | 112 | foreach ($this->paramRoutes[$requestMethod] as $item) { |
113 | 113 | $items[] = $item['pattern']; |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | } |
117 | 117 | } |
118 | 118 | |
119 | - if (! $hasRoutes) { |
|
119 | + if (!$hasRoutes) { |
|
120 | 120 | $trace[] = '<none>'; |
121 | 121 | } |
122 | 122 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace Mezon\Router; |
4 | 4 | |
5 | 5 | /** |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace Mezon\Router; |
4 | 4 | |
5 | 5 | use Mezon\Router\Types\BaseType; |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace Mezon\Router; |
4 | 4 | |
5 | 5 | /** |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace Mezon\Router; |
4 | 4 | |
5 | 5 | /** |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace Mezon\Router\Tests\Base; |
4 | 4 | |
5 | 5 | /** |
@@ -1,5 +1,5 @@ |
||
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; |
@@ -1,5 +1,5 @@ |
||
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; |