Symfony\Bundle\FrameworkBundle\Templating\GlobalVariables::getSession PHP Method

getSession() public method

public getSession ( ) : Symfony\Component\HttpFoundation\Session\Session | null
return Symfony\Component\HttpFoundation\Session\Session | null The session
    public function getSession()
    {
        if ($request = $this->getRequest()) {
            return $request->getSession();
        }
    }