You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($this->isConfigEnabled($container, $config['session'])) {
314
-
if (!\extension_loaded('session')) {
315
-
thrownewLogicException('Session support cannot be enabled as the session extension is not installed. See https://php.net/session.installation for instructions.');
// register cache & dependencies last so that user-defined cache pools take precedence over the default pools created above (e.g. in rate_limiter, validation)
// register session after cache so both can share the connection services
446
+
if ($this->isConfigEnabled($container, $config['session'])) {
447
+
if (!\extension_loaded('session')) {
448
+
thrownewLogicException('Session support cannot be enabled as the session extension is not installed. See https://php.net/session.installation for instructions.');
0 commit comments