summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDisquedur <contact@disquedur.tk>2014-11-04 15:29:39 +0100
committerDisquedur <contact@disquedur.tk>2014-11-04 15:29:39 +0100
commit523afec3bf83cfaf067d3c5b92b02eaa18d730cd (patch)
tree41377b089ae4ae19758b9c92ec60adcfb5b187b1
parentcbc1e7b11e40e800390fc55fff8614d4d2fb8e0a (diff)
downloadsymfony-security-523afec3bf83cfaf067d3c5b92b02eaa18d730cd.zip
symfony-security-523afec3bf83cfaf067d3c5b92b02eaa18d730cd.tar.gz
symfony-security-523afec3bf83cfaf067d3c5b92b02eaa18d730cd.tar.bz2
Remove aligned '=>' and '='
-rw-r--r--Core/Security.php4
-rw-r--r--Http/Authentication/DefaultAuthenticationFailureHandler.php6
-rw-r--r--Http/Authentication/DefaultAuthenticationSuccessHandler.php8
3 files changed, 9 insertions, 9 deletions
diff --git a/Core/Security.php b/Core/Security.php
index d397fb4..14d32f8 100644
--- a/Core/Security.php
+++ b/Core/Security.php
@@ -18,7 +18,7 @@ namespace Symfony\Component\Security\Core;
*/
final class Security
{
- const ACCESS_DENIED_ERROR = '_security.403_error';
+ const ACCESS_DENIED_ERROR = '_security.403_error';
const AUTHENTICATION_ERROR = '_security.last_error';
- const LAST_USERNAME = '_security.last_username';
+ const LAST_USERNAME = '_security.last_username';
}
diff --git a/Http/Authentication/DefaultAuthenticationFailureHandler.php b/Http/Authentication/DefaultAuthenticationFailureHandler.php
index 93150c8..8864dae 100644
--- a/Http/Authentication/DefaultAuthenticationFailureHandler.php
+++ b/Http/Authentication/DefaultAuthenticationFailureHandler.php
@@ -35,9 +35,9 @@ class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandle
protected $logger;
protected $options;
protected $defaultOptions = array(
- 'failure_path' => null,
- 'failure_forward' => false,
- 'login_path' => '/login',
+ 'failure_path' => null,
+ 'failure_forward' => false,
+ 'login_path' => '/login',
'failure_path_parameter' => '_failure_path',
);
diff --git a/Http/Authentication/DefaultAuthenticationSuccessHandler.php b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
index 0ee11b4..5fa7071 100644
--- a/Http/Authentication/DefaultAuthenticationSuccessHandler.php
+++ b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
@@ -29,10 +29,10 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle
protected $providerKey;
protected $defaultOptions = array(
'always_use_default_target_path' => false,
- 'default_target_path' => '/',
- 'login_path' => '/login',
- 'target_path_parameter' => '_target_path',
- 'use_referer' => false,
+ 'default_target_path' => '/',
+ 'login_path' => '/login',
+ 'target_path_parameter' => '_target_path',
+ 'use_referer' => false,
);
/**