Passed
Push — master ( 840977...6b630a )
by Thomas Mauro
06:36
created
src/Factory/RoutableMessageBusFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Factory/Listener/StopWorkerOnRestartSignalListenerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.