8000 if handler_id is identical to null fix · symfony/symfony@1b6b1e9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1b6b1e9

Browse files
committed
if handler_id is identical to null fix
1 parent 805ea3e commit 1b6b1e9

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