diff options
author | Disquedur <contact@disquedur.tk> | 2014-10-30 21:17:55 +0100 |
---|---|---|
committer | Disquedur <contact@disquedur.tk> | 2014-10-30 21:17:55 +0100 |
commit | 9dfc20022d1aae65b26a30ac037ff8eb2dc8417f (patch) | |
tree | 23db20939032fe4499cf783ecaa0d9b05f6f6b78 /Http/Firewall | |
parent | 8b76e3bd74bf9d80b713cdde567f3341c03080d1 (diff) | |
download | symfony-security-9dfc20022d1aae65b26a30ac037ff8eb2dc8417f.zip symfony-security-9dfc20022d1aae65b26a30ac037ff8eb2dc8417f.tar.gz symfony-security-9dfc20022d1aae65b26a30ac037ff8eb2dc8417f.tar.bz2 |
Remove aligned '=>' and '='
Diffstat (limited to 'Http/Firewall')
-rw-r--r-- | Http/Firewall/SimpleFormAuthenticationListener.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Http/Firewall/SimpleFormAuthenticationListener.php b/Http/Firewall/SimpleFormAuthenticationListener.php index 20ce4f2..5b905df 100644 --- a/Http/Firewall/SimpleFormAuthenticationListener.php +++ b/Http/Firewall/SimpleFormAuthenticationListener.php @@ -74,9 +74,9 @@ class SimpleFormAuthenticationListener extends AbstractAuthenticationListener $options = array_merge(array( 'username_parameter' => '_username', 'password_parameter' => '_password', - 'csrf_parameter' => '_csrf_token', - 'intention' => 'authenticate', - 'post_only' => true, + 'csrf_parameter' => '_csrf_token', + 'intention' => 'authenticate', + 'post_only' => true, ), $options); parent::__construct($securityContext, $authenticationManager, $sessionStrategy, $httpUtils, $providerKey, $successHandler, $failureHandler, $options, $logger, $dispatcher); } |