Completed
Pull Request — master (#3)
by Alejandro
02:54
created
src/ConfigProvider.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
 
4 4
 namespace Acelaya\Expressive;
5 5
 
Please login to merge, or discard this patch.
src/Router/SlimRouter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
test/ConfigProviderTest.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
 
4 4
 namespace AcelayaTest\Expressive;
5 5
 
Please login to merge, or discard this patch.