8000 minor #9521 CS fix (peterkokot) · symfony/symfony@a77cc57 · GitHub
[go: up one dir, main page]

Skip to content

Commit a77cc57

Browse files
committed
minor #9521 CS fix (peterkokot)
This PR was merged into the 2.2 branch. Discussion ---------- CS fix I hope this is not BC break though handler_id checking should be done with identical comparison operator I believe. Commits ------- 1b6b1e9 if handler_id is identical to null fix
2 parents 61a0230 + 1b6b1e9 commit a77cc57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ private function registerSessionConfiguration(array $config, ContainerBuilder $c
321321
$container->setParameter('session.storage.options', $options);
322322

323323
// session handler (the internal callback registered with PHP session management)
324-
if (null == $config['handler_id']) {
324+
if (null === $config['handler_id']) {
325325
// Set the handler class to be null
326326
$container->getDefinition('session.storage.native')->replaceArgument(1, null);
327327
} else {

0 commit comments

Comments
 (0)
0