public function WriteCheckSessionHandler::gc in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Session/Storage/Handler/WriteCheckSessionHandler.php \Symfony\Component\HttpFoundation\Session\Storage\Handler\WriteCheckSessionHandler::gc()
File
- vendor/
symfony/ http-foundation/ Session/ Storage/ Handler/ WriteCheckSessionHandler.php, line 55
Class
- WriteCheckSessionHandler
- Wraps another SessionHandlerInterface to only write the session when it has been modified.
Namespace
Symfony\Component\HttpFoundation\Session\Storage\HandlerCode
public function gc($maxlifetime) {
return $this->wrappedSessionHandler
->gc($maxlifetime);
}