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.118.140.120
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
phpunit /
phpunit /
src /
Framework /
Delete
Unzip
Name
Size
Permission
Date
Action
Assert
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Constraint
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Error
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Exception
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
MockObject
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Assert.php
113.19
KB
-rw-r--r--
2020-11-17 16:24
DataProviderTestSuite.php
1.42
KB
-rw-r--r--
2020-11-17 16:24
ExceptionWrapper.php
3.06
KB
-rw-r--r--
2020-11-17 16:24
IncompleteTest.php
409
B
-rw-r--r--
2020-11-17 16:24
IncompleteTestCase.php
1.37
KB
-rw-r--r--
2020-11-17 16:24
InvalidParameterGroupException.php
445
B
-rw-r--r--
2020-11-17 16:24
SelfDescribing.php
519
B
-rw-r--r--
2020-11-17 16:24
SkippedTest.php
406
B
-rw-r--r--
2020-11-17 16:24
SkippedTestCase.php
1.36
KB
-rw-r--r--
2020-11-17 16:24
Test.php
539
B
-rw-r--r--
2020-11-17 16:24
TestBuilder.php
6.83
KB
-rw-r--r--
2020-11-17 16:24
TestCase.php
75.72
KB
-rw-r--r--
2020-11-17 16:24
TestFailure.php
3.49
KB
-rw-r--r--
2020-11-17 16:24
TestListener.php
2.11
KB
-rw-r--r--
2020-11-17 16:24
TestListenerDefaultImplementation.php
1.2
KB
-rw-r--r--
2020-11-17 16:24
TestResult.php
31.28
KB
-rw-r--r--
2020-11-17 16:24
TestSuite.php
21.53
KB
-rw-r--r--
2020-11-17 16:24
TestSuiteIterator.php
1.63
KB
-rw-r--r--
2020-11-17 16:24
WarningTestCase.php
1.25
KB
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php declare(strict_types=1); /* * 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; use Throwable; /** * Wraps Exceptions thrown by code under test. * * Re-instantiates Exceptions thrown by user-space code to retain their original * class names, properties, and stack traces (but without arguments). * * Unlike PHPUnit\Framework_\Exception, the complete stack of previous Exceptions * is processed. * * @internal This class is not covered by the backward compatibility promise for PHPUnit */ final class ExceptionWrapper extends Exception { /** * @var string */ protected $className; /** * @var null|ExceptionWrapper */ protected $previous; public function __construct(Throwable $t) { // PDOException::getCode() is a string. // @see https://php.net/manual/en/class.pdoexception.php#95812 parent::__construct($t->getMessage(), (int) $t->getCode()); $this->setOriginalException($t); } public function __toString(): string { $string = TestFailure::exceptionToString($this); if ($trace = Filter::getFilteredStacktrace($this)) { $string .= "\n" . $trace; } if ($this->previous) { $string .= "\nCaused by\n" . $this->previous; } return $string; } public function getClassName(): string { return $this->className; } public function getPreviousWrapped(): ?self { return $this->previous; } public function setClassName(string $className): void { $this->className = $className; } public function setOriginalException(Throwable $t): void { $this->originalException($t); $this->className = \get_class($t); $this->file = $t->getFile(); $this->line = $t->getLine(); $this->serializableTrace = $t->getTrace(); foreach (\array_keys($this->serializableTrace) as $key) { unset($this->serializableTrace[$key]['args']); } if ($t->getPrevious()) { $this->previous = new self($t->getPrevious()); } } public function getOriginalException(): ?Throwable { return $this->originalException(); } /** * Method to contain static originalException to exclude it from stacktrace to prevent the stacktrace contents, * which can be quite big, from being garbage-collected, thus blocking memory until shutdown. * Approach works both for var_dump() and var_export() and print_r() */ private function originalException(Throwable $exceptionToStore = null): ?Throwable { static $originalExceptions; $instanceId = \spl_object_hash($this); if ($exceptionToStore) { $originalExceptions[$instanceId] = $exceptionToStore; } return $originalExceptions[$instanceId] ?? null; } }