diff options
author | Grégoire Pineau <lyrixx@lyrixx.info> | 2013-03-28 18:41:24 +0100 |
---|---|---|
committer | Grégoire Pineau <lyrixx@lyrixx.info> | 2013-03-28 18:41:24 +0100 |
commit | a29ca08c9e6158f366d25110620c73ffbe2e7c74 (patch) | |
tree | b1a45fba073cb73998c346508c30e980fc36f21a /Http/Firewall.php | |
parent | 54ec1c91bc1f7627d7ef3eaec8f8449872defc1f (diff) | |
download | symfony-security-a29ca08c9e6158f366d25110620c73ffbe2e7c74.zip symfony-security-a29ca08c9e6158f366d25110620c73ffbe2e7c74.tar.gz symfony-security-a29ca08c9e6158f366d25110620c73ffbe2e7c74.tar.bz2 |
[Security] Removed unused var
Diffstat (limited to 'Http/Firewall.php')
-rw-r--r-- | Http/Firewall.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall.php b/Http/Firewall.php index e083fdb..31c1da5 100644 --- a/Http/Firewall.php +++ b/Http/Firewall.php @@ -63,7 +63,7 @@ class Firewall implements EventSubscriberInterface // initiate the listener chain foreach ($listeners as $listener) { - $response = $listener->handle($event); + $listener->handle($event); if ($event->hasResponse()) { break; |