/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Http
NameSizeModeActions
Client/-0755rm
Cookie/-0755rm
Exception/-0755rm
Middleware/-0755rm
Session/-0755rm
TestSuite/-0755rm
BaseApplication.php93880644editdlrm
CallbackStream.php15750644editdlrm
Client.php256240644editdlrm
composer.json15090644editdlrm
ContentTypeNegotiation.php52730644editdlrm
ControllerFactory.php2300644editdlrm
ControllerFactoryInterface.php15340644editdlrm
CorsBuilder.php60250644editdlrm
FlashMessage.php68120644editdlrm
LICENSE.txt12040644editdlrm
MiddlewareApplication.php17910644editdlrm
MiddlewareQueue.php91130644editdlrm
README.md33920644editdlrm
Response.php512180644editdlrm
ResponseEmitter.php89400644editdlrm
Runner.php30640644editdlrm
Server.php55520644editdlrm
ServerRequest.php559690644editdlrm
ServerRequestFactory.php130810644editdlrm
Session.php209880644editdlrm
Uri.php50270644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Http/Runner.php (3064B)
queue = $queue; $this->queue->rewind(); $this->fallbackHandler = $fallbackHandler; if ( $fallbackHandler instanceof RoutingApplicationInterface && $request instanceof ServerRequest ) { Router::setRequest($request); } return $this->handle($request); } /** * Handle incoming server request and return a response. * * @param \Psr\Http\Message\ServerRequestInterface $request The server request * @return \Psr\Http\Message\ResponseInterface An updated response */ public function handle(ServerRequestInterface $request): ResponseInterface { if ($this->queue->valid()) { $middleware = $this->queue->current(); $this->queue->next(); return $middleware->process($request, $this); } if ($this->fallbackHandler) { return $this->fallbackHandler->handle($request); } return new Response([ 'body' => 'Middleware queue was exhausted without returning a response ' . 'and no fallback request handler was set for Runner', 'status' => 500, ]); } }