We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3dde5d commit d91f728Copy full SHA for d91f728
Bootstraps/Symfony.php
@@ -73,7 +73,7 @@ public function getApplication()
73
74
//now we can modify the container
75
$nativeStorage = new StrongerNativeSessionStorage(
76
- $app->getContainer()->getParameter('session.storage.options'),
+ $app->getContainer()->has('session.storage.options') ? $app->getContainer()->getParameter('session.storage.options') : array(),
77
$app->getContainer()->has('session.handler') ? $app->getContainer()->get('session.handler'): null
78
);
79
$app->getContainer()->set('session.storage.native', $nativeStorage);
0 commit comments