summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorDariusz Górecki <darek.krk@gmail.com>2013-04-02 10:39:57 +0100
committerDariusz Górecki <darek.krk@gmail.com>2013-04-02 10:39:57 +0100
commitcfa23578e55c43c20a8d823bf9a01ed08bcde1d5 (patch)
tree5822fa6366ba33f0390760468be2733cc3f8bd25 /Http
parent708f7aa9f69b2ae48832a875c252f4e14f2d76e8 (diff)
downloadsymfony-security-cfa23578e55c43c20a8d823bf9a01ed08bcde1d5.zip
symfony-security-cfa23578e55c43c20a8d823bf9a01ed08bcde1d5.tar.gz
symfony-security-cfa23578e55c43c20a8d823bf9a01ed08bcde1d5.tar.bz2
[CS Fix] Consistent coding-style of concatenation operator usage
Diffstat (limited to 'Http')
-rw-r--r--Http/Firewall/ExceptionListener.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/ExceptionListener.php b/Http/Firewall/ExceptionListener.php
index 0f81d1b..6554595 100644
--- a/Http/Firewall/ExceptionListener.php
+++ b/Http/Firewall/ExceptionListener.php
@@ -181,7 +181,7 @@ class ExceptionListener
{
// session isn't required when using http basic authentication mechanism for example
if ($request->hasSession() && $request->isMethodSafe()) {
- $request->getSession()->set('_security.' . $this->providerKey . '.target_path', $request->getUri());
+ $request->getSession()->set('_security.'.$this->providerKey.'.target_path', $request->getUri());
}
}
}