/opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Framework/TestStatus
NameSizeModeActions
Deprecation.php8480644editdlrm
Error.php8240644editdlrm
Failure.php8320644editdlrm
Incomplete.php8440644editdlrm
Known.php6920644editdlrm
Notice.php8280644editdlrm
Risky.php8240644editdlrm
Skipped.php8320644editdlrm
Success.php8320644editdlrm
TestStatus.php40360644editdlrm
Unknown.php8380644editdlrm
Warning.php8320644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Framework/TestStatus/Skipped.php (832B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework\TestStatus; /** * @psalm-immutable * * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit * * @internal This class is not covered by the backward compatibility promise for PHPUnit */ final class Skipped extends Known { /** * @psalm-assert-if-true Skipped $this */ public function isSkipped(): bool { return true; } public function asInt(): int { return 1; } public function asString(): string { return 'skipped'; } }