File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ public function getCalledListeners(/* Request $request = null */)
196
196
$ hash = 1 <= \func_num_args () && null !== ($ request = func_get_arg (0 )) ? spl_object_hash ($ request ) : null ;
197
197
$ called = [];
198
198
foreach ($ this ->callStack as $ listener ) {
199
- list ( $ eventName , $ requestHash) = $ this ->callStack ->getInfo ();
199
+ [ $ eventName , $ requestHash] = $ this ->callStack ->getInfo ();
200
200
if (null === $ hash || $ hash === $ requestHash ) {
201
201
$ called [] = $ listener ->getInfo ($ eventName );
202
202
}
@@ -228,7 +228,7 @@ public function getNotCalledListeners(/* Request $request = null */)
228
228
229
229
if (null !== $ this ->callStack ) {
230
230
foreach ($ this ->callStack as $ calledListener ) {
231
- list ( , $ requestHash) = $ this ->callStack ->getInfo ();
231
+ [ , $ requestHash] = $ this ->callStack ->getInfo ();
232
232
233
233
if (null === $ hash || $ hash === $ requestHash ) {
234
234
$ calledListeners [] = $ calledListener ->getWrappedListener ();
You can’t perform that action at this time.
0 commit comments