Файл: gapps/vendor/laravel/framework/src/Illuminate/Session/SessionInterface.php
Строк: 58
<?php
namespace IlluminateSession;
use SymfonyComponentHttpFoundationRequest;
use SymfonyComponentHttpFoundationSessionSessionInterface as BaseSessionInterface;
interface SessionInterface extends BaseSessionInterface
{
/**
* Get the session handler instance.
*
* @return SessionHandlerInterface
*/
public function getHandler();
/**
* Determine if the session handler needs a request.
*
* @return bool
*/
public function handlerNeedsRequest();
/**
* Set the request on the handler instance.
*
* @param SymfonyComponentHttpFoundationRequest $request
* @return void
*/
public function setRequestOnHandler(Request $request);
}