diff options
author | Vladimir Reznichenko <kalessil@gmail.com> | 2015-03-07 20:12:23 +0100 |
---|---|---|
committer | Vladimir Reznichenko <kalessil@gmail.com> | 2015-03-07 20:12:23 +0100 |
commit | 117752eeae89dc43f7a9d36ea8ce1f0690e97c5a (patch) | |
tree | 105a7ba8d9b83e744a3b439e0e1f63522915611b /Http/EntryPoint/DigestAuthenticationEntryPoint.php | |
parent | 9c2566542e03e280f62b019264becf6b74891bdc (diff) | |
download | symfony-security-117752eeae89dc43f7a9d36ea8ce1f0690e97c5a.zip symfony-security-117752eeae89dc43f7a9d36ea8ce1f0690e97c5a.tar.gz symfony-security-117752eeae89dc43f7a9d36ea8ce1f0690e97c5a.tar.bz2 |
Php Inspections (EA Extended) - static code analysis includes:
Reduce couple count calls in [Yaml]
Modernize type casting, fix several strict comparisons
Unsets merged
Elvis operator usage
Short syntax for applied operations
Diffstat (limited to 'Http/EntryPoint/DigestAuthenticationEntryPoint.php')
-rw-r--r-- | Http/EntryPoint/DigestAuthenticationEntryPoint.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/EntryPoint/DigestAuthenticationEntryPoint.php b/Http/EntryPoint/DigestAuthenticationEntryPoint.php index 71a6313..5a7aa1a 100644 --- a/Http/EntryPoint/DigestAuthenticationEntryPoint.php +++ b/Http/EntryPoint/DigestAuthenticationEntryPoint.php @@ -50,7 +50,7 @@ class DigestAuthenticationEntryPoint implements AuthenticationEntryPointInterfac $authenticateHeader = sprintf('Digest realm="%s", qop="auth", nonce="%s"', $this->realmName, $nonceValueBase64); if ($authException instanceof NonceExpiredException) { - $authenticateHeader = $authenticateHeader.', stale="true"'; + $authenticateHeader .= ', stale="true"'; } if (null !== $this->logger) { |