@@ -69,7 +69,7 @@ discard block |
||
| 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 |
||
| 118 | 118 | $refMap[$id] = new TypedReference($id, $class); |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - return [ $mapping, $refMap ]; |
|
| 121 | + return [$mapping, $refMap]; |
|
| 122 | 122 | } |
| 123 | 123 | } |
@@ -23,6 +23,6 @@ |
||
| 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 | } |
@@ -23,6 +23,6 @@ |
||
| 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 | } |