golden hour
/opt/cpanel/ea-wappspector/vendor/phpunit/php-code-coverage/src/TestStatus
⬆️ Go Up
Upload
File/Folder
Size
Actions
Failure.php
604 B
Del
OK
Known.php
528 B
Del
OK
Success.php
604 B
Del
OK
TestStatus.php
1.18 KB
Del
OK
Unknown.php
609 B
Del
OK
Edit: Known.php
<?php declare(strict_types=1); /* * This file is part of phpunit/php-code-coverage. * * (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 SebastianBergmann\CodeCoverage\Test\TestStatus; /** * @psalm-immutable */ abstract class Known extends TestStatus { /** * @psalm-assert-if-true Known $this */ public function isKnown(): bool { return true; } }
Save