[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
libraries
/
vendor
/
psr
/
http-factory
/
src
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 ResponseFactoryInterface.php
546 B
SET
[ EDIT ]
|
[ DEL ]
📄 ServerRequestFactoryInterface.php
927 B
SET
[ EDIT ]
|
[ DEL ]
📄 StreamFactoryInterface.php
1,418 B
SET
[ EDIT ]
|
[ DEL ]
📄 UploadedFileFactoryInterface.php
1,110 B
SET
[ EDIT ]
|
[ DEL ]
📄 UriFactoryInterface.php
325 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ResponseFactoryInterface.php
<?php namespace Psr\Http\Message; interface ResponseFactoryInterface { /** * Create a new response. * * @param int $code HTTP status code; defaults to 200 * @param string $reasonPhrase Reason phrase to associate with status code * in generated response; if none is provided implementations MAY use * the defaults as suggested in the HTTP specification. * * @return ResponseInterface */ public function createResponse(int $code = 200, string $reasonPhrase = ''): ResponseInterface; }