Passed
Push — master ( f68793...1e735e )
by Olivier
10:02
created
lib/Symfony/HandlerProviderPass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function process(ContainerBuilder $container): void
71 71
     {
72
-        [ $mapping, $refMap ] = $this->collectHandlers($container);
72
+        [$mapping, $refMap] = $this->collectHandlers($container);
73 73
 
74 74
         $container
75 75
             ->register($this->serviceId, $this->providerClass)
@@ -118,6 +118,6 @@  discard block
 block discarded – undo
118 118
             $refMap[$id] = new TypedReference($id, $class);
119 119
         }
120 120
 
121
-        return [ $mapping, $refMap ];
121
+        return [$mapping, $refMap];
122 122
     }
123 123
 }
Please login to merge, or discard this patch.
lib/PermissionNotGranted.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
         public Context $context,
24 24
         ?Throwable $previous = null
25 25
     ) {
26
-        parent::__construct("Permission not granted for message: " . $dispatched_message::class, 0, $previous);
26
+        parent::__construct("Permission not granted for message: ".$dispatched_message::class, 0, $previous);
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
lib/VoterNotFound.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
         public string $permission,
24 24
         ?Throwable $previous = null
25 25
     ) {
26
-        parent::__construct("Voter not found for permission: $permission", previous: $previous);
26
+        parent::__construct("Voter not found for permission: $permission", previous : $previous);
27 27
     }
28 28
 }
Please login to merge, or discard this patch.