diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-03-17 17:01:59 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-03-17 17:01:59 +0100 |
commit | 65617daf08089051c092962015f26998624d56ba (patch) | |
tree | 2b5c402f7c615855dba280e29291d35dc7be076d /Http | |
parent | a56ff90380bb8c4ec4cd464ce876f42ee3661f01 (diff) | |
download | symfony-security-65617daf08089051c092962015f26998624d56ba.zip symfony-security-65617daf08089051c092962015f26998624d56ba.tar.gz symfony-security-65617daf08089051c092962015f26998624d56ba.tar.bz2 |
renamed filterCore* to onCore*
The onCore* events are fired at some pre-defined points during the
handling of a request. At this is more important than the fact
that you can change things from the event.
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall/ContextListener.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/ContextListener.php b/Http/Firewall/ContextListener.php index aef104f..a20eaab 100644 --- a/Http/Firewall/ContextListener.php +++ b/Http/Firewall/ContextListener.php @@ -86,7 +86,7 @@ class ContextListener implements ListenerInterface * * @param FilterResponseEvent $event A FilterResponseEvent instance */ - public function filterCoreResponse(FilterResponseEvent $event) + public function onCoreResponse(FilterResponseEvent $event) { if (HttpKernelInterface::MASTER_REQUEST !== $event->getRequestType()) { return; |