Bugsnag\BugsnagLaravel\Request\LaravelRequest::getSession PHP Method

getSession() public method

Get the session data.
public getSession ( ) : array
return array
    public function getSession()
    {
        $session = $this->request->getSession();
        return $session ? $session->all() : [];
    }