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 : 18.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
react /
http-client /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
CallableStub.php
108
B
-rw-r--r--
2018-04-10 09:00
DecodeChunkedStreamTest.php
7.87
KB
-rw-r--r--
2018-04-10 09:00
FunctionalIntegrationTest.php
5.31
KB
-rw-r--r--
2018-04-10 09:00
RequestDataTest.php
4.51
KB
-rw-r--r--
2018-04-10 09:00
RequestTest.php
22.34
KB
-rw-r--r--
2018-04-10 09:00
ResponseTest.php
4.09
KB
-rw-r--r--
2018-04-10 09:00
TestCase.php
1.17
KB
-rw-r--r--
2018-04-10 09:00
bootstrap.php
206
B
-rw-r--r--
2018-04-10 09:00
Save
Rename
<?php namespace React\Tests\HttpClient; use PHPUnit\Framework\TestCase as BaseTestCase; class TestCase extends BaseTestCase { protected function expectCallableExactly($amount) { $mock = $this->createCallableMock(); $mock ->expects($this->exactly($amount)) ->method('__invoke'); return $mock; } protected function expectCallableOnce() { $mock = $this->createCallableMock(); $mock ->expects($this->once()) ->method('__invoke'); return $mock; } protected function expectCallableOnceWith($value) { $mock = $this->createCallableMock(); $mock ->expects($this->once()) ->method('__invoke') ->with($value); return $mock; } protected function expectCallableNever() { $mock = $this->createCallableMock(); $mock ->expects($this->never()) ->method('__invoke'); return $mock; } protected function createCallableMock() { return $this ->getMockBuilder('React\Tests\HttpClient\CallableStub') ->getMock(); } }