lithium\storage\session\adapter\Php::_start PHP Method

_start() protected method

Starts the session.
protected _start ( ) : boolean
return boolean `true` if session successfully started (or has already been started), `false` otherwise.
    protected function _start()
    {
        if ($this->isStarted()) {
            return true;
        }
        session_cache_limiter();
        return session_start();
    }