<?phpnamespaceIlluminate\Session;useSymfony\Component\HttpFoundation\Request;useSymfony\Component\HttpFoundation\Session\SessionInterfaceasBaseSessionInterface;interfaceSessionInterfaceextendsBaseSessionInterface{/** * Get the session handler instance. * * @return \SessionHandlerInterface */publicfunctiongetHandler();/** * Determine if the session handler needs a request. * * @return bool */publicfunctionhandlerNeedsRequest();/** * Set the request on the handler instance. * * @param \Symfony\Component\HttpFoundation\Request $request * @return void */publicfunctionsetRequestOnHandler(Request$request);}