File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/phpunit/phpunit/src/Metadata
Upload
[..]
After.php (835 B)
Edit
Rename
Del
AfterClass.php (845 B)
Edit
Rename
Del
AllowMockObjectsWithoutExpectations.php (589 B)
Edit
Rename
Del
Api/
Rename
Del
BackupGlobals.php (848 B)
Edit
Rename
Del
BackupStaticProperties.php (866 B)
Edit
Rename
Del
Before.php (837 B)
Edit
Rename
Del
BeforeClass.php (847 B)
Edit
Rename
Del
CoversFunction.php (1.01 KB)
Edit
Rename
Del
CoversMethod.php (1.29 KB)
Edit
Rename
Del
CoversNamespace.php (1012 B)
Edit
Rename
Del
CoversNothing.php (545 B)
Edit
Rename
Del
CoversTrait.php (988 B)
Edit
Rename
Del
DataProvider.php (1.54 KB)
Edit
Rename
Del
DependsOnClass.php (1.32 KB)
Edit
Rename
Del
DependsOnMethod.php (1.65 KB)
Edit
Rename
Del
DisableReturnValueGenerationForTestDoubles.php (603 B)
Edit
Rename
Del
DoesNotPerformAssertions.php (567 B)
Edit
Rename
Del
Exception/
Rename
Del
ExcludeStaticPropertyFromBackup.php (1.34 KB)
Edit
Rename
Del
Group.php (992 B)
Edit
Rename
Del
IgnoreDeprecations.php (1.04 KB)
Edit
Rename
Del
IgnorePhpunitDeprecations.php (661 B)
Edit
Rename
Del
IgnorePhpunitWarnings.php (1.05 KB)
Edit
Rename
Del
Metadata.php (26.64 KB)
Edit
Rename
Del
Parser/
Rename
Del
PostCondition.php (851 B)
Edit
Rename
Del
PreCondition.php (849 B)
Edit
Rename
Del
PreserveGlobalState.php (860 B)
Edit
Rename
Del
RequiresFunction.php (1.01 KB)
Edit
Rename
Del
RequiresMethod.php (1.29 KB)
Edit
Rename
Del
RequiresPhp.php (974 B)
Edit
Rename
Del
RequiresPhpExtension.php (1.65 KB)
Edit
Rename
Del
RequiresPhpunitExtension.php (1.06 KB)
Edit
Rename
Del
RequiresSetting.php (1.25 KB)
Edit
Rename
Del
TestDox.php (961 B)
Edit
Rename
Del
TestWith.php (1.24 KB)
Edit
Rename
Del
UsesClass.php (984 B)
Edit
Rename
Del
UsesClassesThatExtendClass.php (1018 B)
Edit
Rename
Del
UsesFunction.php (1 KB)
Edit
Rename
Del
UsesMethod.php (1.28 KB)
Edit
Rename
Del
UsesNamespace.php (1004 B)
Edit
Rename
Del
UsesTrait.php (984 B)
Edit
Rename
Del
Version/
Rename
Del
WithoutErrorHandler.php (557 B)
Edit
Rename
Del
Edit: PreCondition.php
<?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\Metadata; /** * @immutable * * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit */ final readonly class PreCondition extends Metadata { private int $priority; /** * @param int<0, 1> $level */ protected function __construct(int $level, int $priority) { parent::__construct($level); $this->priority = $priority; } public function isPreCondition(): true { return true; } public function priority(): int { return $this->priority; } }
Simpan