@@ -6,7 +6,7 @@ |
||
6 | 6 | |
7 | 7 | class Input |
8 | 8 | { |
9 | - private const SCHEMA_PATH = __DIR__ . '/../../spec/request.json'; |
|
9 | + private const SCHEMA_PATH = __DIR__.'/../../spec/request.json'; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * @var \stdClass |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | foreach ($input->decoded() as $request) { |
63 | 63 | $pseudoInput = Input::fromSafeData($request); |
64 | 64 | |
65 | - if(null !== $response = $this->single($pseudoInput)) { |
|
65 | + if (null !== $response = $this->single($pseudoInput)) { |
|
66 | 66 | $responses[] = $response; |
67 | 67 | } |
68 | 68 | } |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | try { |
87 | 87 | $procedure = $this->container->get($this->methods[$request->method()]); |
88 | - } catch (ContainerExceptionInterface|NotFoundExceptionInterface $e) { |
|
88 | + } catch (ContainerExceptionInterface | NotFoundExceptionInterface $e) { |
|
89 | 89 | return $this->end(Error::internal($request->id()), $request); |
90 | 90 | } |
91 | 91 |