Laravel\Lumen\Testing\ApplicationTrait::startSession PHP Method

startSession() protected method

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