Recca0120\LaravelTracy\SessionHandlerWrapper::gc PHP Метод

gc() публичный Метод

Cleanup old sessions.
С версии: 5.4.0
public gc ( integer $maxLifeTime ) : boolean
$maxLifeTime integer

Sessions that have not updated for the last maxlifetime seconds will be removed.

Результат boolean

The return value (usually TRUE on success, FALSE on failure). Note this value is returned internally to PHP for processing.

    public function gc($maxLifeTime)
    {
        $this->handler->gc($maxLifeTime);
        return true;
    }