@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Acelaya\Expressive; |
| 5 | 5 | |
@@ -114,7 +114,7 @@ |
||
| 114 | 114 | */ |
| 115 | 115 | public function generateUri(string $name, array $substitutions = [], array $options = []): string |
| 116 | 116 | { |
| 117 | - if (! $this->router->hasNamedRoute($name)) { |
|
| 117 | + if (!$this->router->hasNamedRoute($name)) { |
|
| 118 | 118 | throw new Exception\RuntimeException(sprintf( |
| 119 | 119 | 'Cannot generate URI based on route "%s"; route not found', |
| 120 | 120 | $name |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace AcelayaTest\Expressive; |
| 5 | 5 | |