We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15c0d48 commit 079b944Copy full SHA for 079b944
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/RedisSessionHandler.php
@@ -100,6 +100,6 @@ public function gc($maxlifetime): bool
100
*/
101
public function updateTimestamp($sessionId, $data)
102
{
103
- return $this->redis->expire($this->prefix.$sessionId, (int) ini_get('session.gc_maxlifetime'));
+ return (bool) $this->redis->expire($this->prefix.$sessionId, (int) ini_get('session.gc_maxlifetime'));
104
}
105
0 commit comments