summaryrefslogtreecommitdiffstats
path: root/Http/Firewall.php
diff options
context:
space:
mode:
authorGrégoire Pineau <lyrixx@lyrixx.info>2013-03-28 18:41:24 +0100
committerGrégoire Pineau <lyrixx@lyrixx.info>2013-03-28 18:41:24 +0100
commita29ca08c9e6158f366d25110620c73ffbe2e7c74 (patch)
treeb1a45fba073cb73998c346508c30e980fc36f21a /Http/Firewall.php
parent54ec1c91bc1f7627d7ef3eaec8f8449872defc1f (diff)
downloadsymfony-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.php2
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;