@@ -174,9 +174,9 @@ discard block |
||
| 174 | 174 | */ |
| 175 | 175 | private function getRequest(): ServerRequestInterface |
| 176 | 176 | { |
| 177 | - try { |
|
| 177 | + try{ |
|
| 178 | 178 | return $this->container->get(ServerRequestInterface::class); |
| 179 | - } catch (NotFoundExceptionInterface $e) { |
|
| 179 | + }catch (NotFoundExceptionInterface $e){ |
|
| 180 | 180 | throw new ScopeException('Unable to receive active request', $e->getCode(), $e); |
| 181 | 181 | } |
| 182 | 182 | } |
@@ -188,9 +188,9 @@ discard block |
||
| 188 | 188 | */ |
| 189 | 189 | private function getCookieQueue(): CookieQueue |
| 190 | 190 | { |
| 191 | - try { |
|
| 191 | + try{ |
|
| 192 | 192 | return $this->container->get(CookieQueue::class); |
| 193 | - } catch (NotFoundExceptionInterface $e) { |
|
| 193 | + }catch (NotFoundExceptionInterface $e){ |
|
| 194 | 194 | throw new ScopeException('Unable to receive cookie queue, invalid request scope', $e->getCode(), $e); |
| 195 | 195 | } |
| 196 | 196 | } |