OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
knoblyExpressLandingPage
/
vendor
/
psr
/
http-client
/
src
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/21/2024 10:02:45 AM
rwxr-xr-x
📄
ClientExceptionInterface.php
181 bytes
08/21/2024 10:02:45 AM
rw-r--r--
📄
ClientInterface.php
520 bytes
08/21/2024 10:02:45 AM
rw-r--r--
📄
NetworkExceptionInterface.php
682 bytes
08/21/2024 10:02:45 AM
rw-r--r--
📄
RequestExceptionInterface.php
610 bytes
08/21/2024 10:02:45 AM
rw-r--r--
Editing: ClientInterface.php
Close
<?php namespace Psr\Http\Client; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; interface ClientInterface { /** * Sends a PSR-7 request and returns a PSR-7 response. * * @param RequestInterface $request * * @return ResponseInterface * * @throws \Psr\Http\Client\ClientExceptionInterface If an error happens while processing the request. */ public function sendRequest(RequestInterface $request): ResponseInterface; }