@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | protected function getRequest(): Request |
| 45 | 45 | { |
| 46 | - if (! $this->request) { |
|
| 46 | + if (!$this->request) { |
|
| 47 | 47 | $this->request = ServerRequest::fromGlobals(); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | protected function handleDynamicRoute(): ?Response |
| 63 | 63 | { |
| 64 | - if (! $this->router) { |
|
| 64 | + if (!$this->router) { |
|
| 65 | 65 | return null; |
| 66 | 66 | } |
| 67 | 67 | |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | try { |
| 74 | 74 | $response = $this->handleStaticRoute(); |
| 75 | 75 | |
| 76 | - if (! $response) { |
|
| 76 | + if (!$response) { |
|
| 77 | 77 | $response = $this->handleDynamicRoute(); |
| 78 | 78 | } |
| 79 | 79 | } catch (StitcherException $e) { |