@@ -51,7 +51,7 @@ public function getAliases(): array
5151 */
5252 public function getConsumeInterceptors (): array
5353 {
54- return (array )($ this ->config ['interceptors ' ]['consume ' ] ?? []);
54+ return (array ) ($ this ->config ['interceptors ' ]['consume ' ] ?? []);
5555 }
5656
5757 /**
@@ -61,7 +61,7 @@ public function getConsumeInterceptors(): array
6161 */
6262 public function getPushInterceptors (): array
6363 {
64- return (array )($ this ->config ['interceptors ' ]['push ' ] ?? []);
64+ return (array ) ($ this ->config ['interceptors ' ]['push ' ] ?? []);
6565 }
6666
6767 /**
@@ -82,7 +82,7 @@ public function getDefaultDriver(): string
8282 */
8383 public function getDriverAliases (): array
8484 {
85- return (array )($ this ->config ['driverAliases ' ] ?? []);
85+ return (array ) ($ this ->config ['driverAliases ' ] ?? []);
8686 }
8787
8888 /**
@@ -101,7 +101,7 @@ public function getConnections(?string $driver = null): array
101101 if (isset ($ driverAliases [$ driver ])) {
102102 if (!\is_string ($ this ->config ['driverAliases ' ][$ driver ])) {
103103 throw new InvalidArgumentException (
104- \sprintf ('Driver alias for `%s` value must be a string ' , $ driver )
104+ \sprintf ('Driver alias for `%s` value must be a string ' , $ driver ),
105105 );
106106 }
107107
@@ -140,7 +140,7 @@ public function getConnection(string $name): array
140140
141141 if (!\is_string ($ driver )) {
142142 throw new InvalidArgumentException (
143- \sprintf ('Driver for queue connection `%s` value must be a string ' , $ name )
143+ \sprintf ('Driver for queue connection `%s` value must be a string ' , $ name ),
144144 );
145145 }
146146
@@ -150,7 +150,7 @@ public function getConnection(string $name): array
150150
151151 if (!\is_string ($ connection ['driver ' ])) {
152152 throw new InvalidArgumentException (
153- \sprintf ('Driver alias for queue connection `%s` value must be a string ' , $ name )
153+ \sprintf ('Driver alias for queue connection `%s` value must be a string ' , $ name ),
154154 );
155155 }
156156
@@ -162,12 +162,12 @@ public function getConnection(string $name): array
162162 */
163163 public function getRegistryHandlers (): array
164164 {
165- return (array )($ this ->config ['registry ' ]['handlers ' ] ?? []);
165+ return (array ) ($ this ->config ['registry ' ]['handlers ' ] ?? []);
166166 }
167167
168168 public function getRegistrySerializers (): array
169169 {
170- return (array )($ this ->config ['registry ' ]['serializers ' ] ?? []);
170+ return (array ) ($ this ->config ['registry ' ]['serializers ' ] ?? []);
171171 }
172172
173173 /**
0 commit comments