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 */)
196196 $ hash = 1 <= \func_num_args () && null !== ($ request = func_get_arg (0 )) ? spl_object_hash ($ request ) : null ;
197197 $ called = [];
198198 foreach ($ this ->callStack as $ listener ) {
199- list ( $ eventName , $ requestHash) = $ this ->callStack ->getInfo ();
199+ [ $ eventName , $ requestHash] = $ this ->callStack ->getInfo ();
200200 if (null === $ hash || $ hash === $ requestHash ) {
201201 $ called [] = $ listener ->getInfo ($ eventName );
202202 }
@@ -228,7 +228,7 @@ public function getNotCalledListeners(/* Request $request = null */)
228228
229229 if (null !== $ this ->callStack ) {
230230 foreach ($ this ->callStack as $ calledListener ) {
231- list ( , $ requestHash) = $ this ->callStack ->getInfo ();
231+ [ , $ requestHash] = $ this ->callStack ->getInfo ();
232232
233233 if (null === $ hash || $ hash === $ requestHash ) {
234234 $ calledListeners [] = $ calledListener ->getWrappedListener ();
You can’t perform that action at this time.
0 commit comments