@@ -64,7 +64,7 @@ |
||
64 | 64 | 'properties' => (object) [ |
65 | 65 | 'data' => $methodSchemaContent->properties->response, |
66 | 66 | ], |
67 | - 'required' => ['data'], |
|
67 | + 'required' => [ 'data' ], |
|
68 | 68 | ]; |
69 | 69 | |
70 | 70 | // Validate the response against the response definition in method schema |
@@ -15,8 +15,8 @@ |
||
15 | 15 | public function __construct( |
16 | 16 | string $message, |
17 | 17 | int $code, |
18 | - null|Throwable $previous = null, |
|
19 | - private readonly array $context = [], |
|
18 | + null | Throwable $previous = null, |
|
19 | + private readonly array $context = [ ], |
|
20 | 20 | ) { |
21 | 21 | parent::__construct($message, $code, $previous); |
22 | 22 | } |
@@ -110,7 +110,7 @@ |
||
110 | 110 | private function logError( |
111 | 111 | Throwable $e, |
112 | 112 | UuidInterface $uuid, |
113 | - array $context = [], |
|
113 | + array $context = [ ], |
|
114 | 114 | ): void { |
115 | 115 | $this->logger?->error( |
116 | 116 | sprintf('%s (%d)', $e->getMessage(), $e->getCode()), |