Illuminate\Foundation\Testing\Concerns\InteractsWithSession::startSession PHP Method

startSession() protected method

Start the session for the application.
protected startSession ( )
    protected function startSession()
    {
        if (!$this->app['session']->isStarted()) {
            $this->app['session']->start();
        }
        return $this;
    }