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 @@ -177,7 +177,7 @@ public function getCalledListeners(Request $request = null)
177177 $ hash = $ request ? spl_object_hash ($ request ) : null ;
178178 $ called = [];
179179 foreach ($ this ->callStack as $ listener ) {
180- list ( $ eventName , $ requestHash) = $ this ->callStack ->getInfo ();
180+ [ $ eventName , $ requestHash] = $ this ->callStack ->getInfo ();
181181 if (null === $ hash || $ hash === $ requestHash ) {
182182 $ called [] = $ listener ->getInfo ($ eventName );
183183 }
@@ -207,7 +207,7 @@ public function getNotCalledListeners(Request $request = null)
207207
208208 if (null !== $ this ->callStack ) {
209209 foreach ($ this ->callStack as $ calledListener ) {
210- list ( , $ requestHash) = $ this ->callStack ->getInfo ();
210+ [ , $ requestHash] = $ this ->callStack ->getInfo ();
211211
212212 if (null === $ hash || $ hash === $ requestHash ) {
213213 $ calledListeners [] = $ calledListener ->getWrappedListener ();
You can’t perform that action at this time.
0 commit comments