// SYSTEM PANEL //
[ROOT]
/
opt
/
alt
/
tests
/
alt-php81-pecl-psr_1.2.0-1.el8
/
tests
[ PARENT ]
EDIT :: 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
CANCEL