Working : Adding type inference to the Thelia2 Request->getSession()

This commit is contained in:
gmorel
2013-09-12 16:23:21 +02:00
parent cee49c908d
commit 6d914c5676

View File

@@ -55,4 +55,15 @@ class Request extends BaseRequest
return $uri . $additionalQs;
}
/**
* Gets the Session.
*
* @return \Thelia\Core\HttpFoundation\Session\Session The session
* @api
*/
public function getSession()
{
return parent::getSession();
}
}