芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/portal.pulsehost.co.uk/vendor/mindplay/middleman/src/Delegate.php
callback = $callback; } /** * Dispatch the next available middleware and return the response. * * @param ServerRequestInterface $request * @return ResponseInterface */ public function process(ServerRequestInterface $request) { return call_user_func($this->callback, $request); } /** * Dispatch the next available middleware and return the response. * * This method duplicates `next()` to provide backwards compatibility with non-PSR 15 middleware. * * @param ServerRequestInterface $request * * @return ResponseInterface */ public function __invoke(ServerRequestInterface $request) { return call_user_func($this->callback, $request); } }