You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!$lazy || !$listenerinstanceof FirewallListenerInterface) {
57
+
if (!$listenerinstanceof FirewallListenerInterface) {
58
+
trigger_deprecation('symfony/security-http', '7.4', 'Using a callable as firewall listener is deprecated, extend "%s" or implement "%s" instead.', AbstractListener::class, FirewallListenerInterface::class);
@@ -123,6 +124,8 @@ protected function callListeners(RequestEvent $event, iterable $listeners)
123
124
{
124
125
foreach ($listenersas$listener) {
125
126
if (!$listenerinstanceof FirewallListenerInterface) {
127
+
trigger_deprecation('symfony/security-http', '7.4', 'Using a callable as firewall listener is deprecated, extend "%s" or implement "%s" instead.', AbstractListener::class, FirewallListenerInterface::class);
0 commit comments