We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35e0c22 commit 7f71987Copy full SHA for 7f71987
1 file changed
Handler/MemcachedHandler.php
@@ -70,7 +70,7 @@ private function configuration(SessionConfiguration $settings): array
70
'servers' => (array)$settings->get('servers', [['127.0.0.1', 11211]]),
71
'id' => (string)$settings->get('id', $settings->get('name', ini_get('session.name'))),
72
'options' => (array)$settings->get('options', []) + [
73
- \Memcached::OPT_PREFIX_KEY => $settings->prefix ?? 'session.'
+ \Memcached::OPT_PREFIX_KEY => (string)$settings->get('prefix', 'session.')
74
]
75
];
76
}
0 commit comments