3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface MiddlewareInterface { /** * Process a request and return a response. * * Takes the incoming request and optionally modifies it before delegating * to the next handler to get a response. May modify the response before * ultimately returning it. * * @param RequestInterface $request * @param ResponseInterface $response * @param callable $next * * @return ResponseInterface */ public function __invoke( RequestInterface $request, ResponseInterface $response, callable $next ); } interface ServerMiddlewareInterface extends MiddlewareInterface { /** * Process a request and return a response. * * Takes the incoming request and optionally modifies it before delegating * to the next handler to get a response. May modify the response before * ultimately returning it. * * @param RequestInterface $request * @param ResponseInterface $response * @param callable $next * * @return ResponseInterface */ public function __invoke( ServerRequestInterface $request, ResponseInterface $response, callable $next ); } class AcmeMiddleware implements ServerMiddlewareInterface { public function __invoke( ServerRequestInterface $request, ResponseInterface $response, callable $next ) { return $response; } }

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
122.35 ms | 1774 KiB | 4 Q