@@ -68,7 +68,7 @@ |
||
68 | 68 | */ |
69 | 69 | public static function __callStatic(string $name, array $arguments): MessageBusInterface |
70 | 70 | { |
71 | - if (! array_key_exists(0, $arguments) || ! $arguments[0] instanceof ContainerInterface) { |
|
71 | + if ( ! array_key_exists(0, $arguments) || ! $arguments[0] instanceof ContainerInterface) { |
|
72 | 72 | throw new InvalidArgumentException(sprintf( |
73 | 73 | 'The first argument must be of type %s', |
74 | 74 | ContainerInterface::class |
@@ -17,7 +17,7 @@ |
||
17 | 17 | |
18 | 18 | $cachePoolForRestartSignal = $config['messenger']['cache_pool_for_restart_signal'] ?? null; |
19 | 19 | |
20 | - if (! $cachePoolForRestartSignal) { |
|
20 | + if ( ! $cachePoolForRestartSignal) { |
|
21 | 21 | throw new InvalidArgumentException('Invalid cache_pool_for_restart_signal service'); |
22 | 22 | } |
23 | 23 |