📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 09:13:16
📂
/
/
opt
/
alt
/
tests
/
alt-php83-pecl-psr_1.2.0-1.el8
/
tests
✏️
Editing: SampleResponseFactory.inc
<?php use Psr\Http\Message\ResponseFactoryInterface; use Psr\Http\Message\ResponseInterface; class SampleResponseFactory implements ResponseFactoryInterface { public function createResponse(int $code = 200, string $reasonPhrase = ''): ResponseInterface { var_dump(__METHOD__, $code, $reasonPhrase); return new SampleResponse(); } }
💾 Save Changes
❌ Cancel