芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/mctv/vendor/slim/http/src/Factory/DecoratedResponseFactory.php
responseFactory = $responseFactory; $this->streamFactory = $streamFactory; } /** * @param int $code * @param string $reasonPhrase * @return Response */ public function createResponse(int $code = 200, string $reasonPhrase = ''): ResponseInterface { $response = $this->responseFactory->createResponse($code, $reasonPhrase); return new Response($response, $this->streamFactory); } }