Skip to content

Commit bcc3528

Browse files
Wrong method name 'register' should be 'addListener'
1 parent 41c7d44 commit bcc3528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/security/firewall.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ with the event dispatcher that is used by the :class:`Symfony\\Component\\HttpKe
6666
6767
$firewall = new Firewall($map, $dispatcher);
6868
69-
$dispatcher->register(KernelEvents::REQUEST, array($firewall, 'onKernelRequest');
69+
$dispatcher->addListener(KernelEvents::REQUEST, array($firewall, 'onKernelRequest');
7070
7171
The firewall is registered to listen to the ``kernel.request`` event that
7272
will be dispatched by the ``HttpKernel`` at the beginning of each request

0 commit comments

Comments
 (0)