Commit 5a1489ca authored by Fabien Potencier's avatar Fabien Potencier

fixed strict comparison

parent 59ef20a3
...@@ -284,7 +284,7 @@ class SecurityServiceProvider implements ServiceProviderInterface, EventListener ...@@ -284,7 +284,7 @@ class SecurityServiceProvider implements ServiceProviderInterface, EventListener
} }
if (!isset($app['security.exception_listener.'.$name])) { if (!isset($app['security.exception_listener.'.$name])) {
if (null == $entryPoint) { if (null === $entryPoint) {
$app[$entryPoint = 'security.entry_point.'.$name.'.form'] = $app['security.entry_point.form._proto']($name, array()); $app[$entryPoint = 'security.entry_point.'.$name.'.form'] = $app['security.entry_point.form._proto']($name, array());
} }
$accessDeniedHandler = null; $accessDeniedHandler = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment