diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2013-04-08 16:57:30 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-04-08 16:57:30 +0200 |
commit | 80e9159c0c5cc108d799b7b80099565c62e3201f (patch) | |
tree | bfc5ce84811823b4fc0f7400c7a09f3916d00670 /Http | |
parent | ca59c1631b4d39f134a0768d820e7ba1c5779d0a (diff) | |
parent | a29ca08c9e6158f366d25110620c73ffbe2e7c74 (diff) | |
download | symfony-security-80e9159c0c5cc108d799b7b80099565c62e3201f.zip symfony-security-80e9159c0c5cc108d799b7b80099565c62e3201f.tar.gz symfony-security-80e9159c0c5cc108d799b7b80099565c62e3201f.tar.bz2 |
merged branch lyrixx/path-10 (PR #7597)
This PR was merged into the 2.2 branch.
Discussion
----------
[Security] Removed unused var
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | I guess
| Fixed tickets | -
Commits
-------
bd26419 [Security] Removed unused var
Diffstat (limited to 'Http')
-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; |