Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
vendor /
psr /
http-client /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
ClientExceptionInterface.php
171
B
-rw-rw-rw-
2023-02-07 22:26
ClientInterface.php
500
B
-rw-rw-rw-
2023-02-07 22:26
NetworkExceptionInterface.php
658
B
-rw-rw-rw-
2023-02-07 22:26
RequestExceptionInterface.php
586
B
-rw-rw-rw-
2023-02-07 22:26
Save
Rename
<?php namespace Psr\Http\Client; use Psr\Http\Message\RequestInterface; /** * Thrown when the request cannot be completed because of network issues. * * There is no response object as this exception is thrown when no response has been received. * * Example: the target host name can not be resolved or the connection failed. */ interface NetworkExceptionInterface extends ClientExceptionInterface { /** * Returns the request. * * The request object MAY be a different object from the one passed to ClientInterface::sendRequest() * * @return RequestInterface */ public function getRequest(): RequestInterface; }