Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.140.254.100
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
clue /
buzz-react /
tests /
Message /
Delete
Unzip
Name
Size
Permission
Date
Action
MessageFactoryTest.php
3.27
KB
-rw-r--r--
2018-10-24 09:00
ReadableBodyStreamTest.php
4.33
KB
-rw-r--r--
2018-10-24 09:00
ResponseExceptionTest.php
532
B
-rw-r--r--
2018-10-24 09:00
Save
Rename
<?php use Clue\React\Buzz\Message\ResponseException; use RingCentral\Psr7\Response; class ResponseExceptionTest extends TestCase { public function testCtorDefaults() { $response = new Response(); $response = $response->withStatus(404, 'File not found'); $e = new ResponseException($response); $this->assertEquals(404, $e->getCode()); $this->assertEquals('HTTP status code 404 (File not found)', $e->getMessage()); $this->assertSame($response, $e->getResponse()); } }