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 07cccd5 commit d007469Copy full SHA for d007469
src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php
@@ -80,7 +80,9 @@ protected function doRead($sessionId)
80
*/
81
public function updateTimestamp($sessionId, $data)
82
{
83
- return $this->memcached->touch($this->prefix.$sessionId, time() + $this->ttl);
+ $this->memcached->touch($this->prefix.$sessionId, time() + $this->ttl);
84
+
85
+ return true;
86
}
87
88
/**
0 commit comments