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

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

Initialize session.
С версии: 5.4.0
public open ( string $savePath, string $name ) : boolean
$savePath string The path where to store/retrieve the session.
$name string The session name.
Результат boolean

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

    public function open($savePath, $name)
    {
        $this->handler->open($savePath, $name);
        return true;
    }