/
home
/
u417168693
/
domains
/
devtechera.com
/
public_html
/
vendor
/
phpunit
/
phpunit
/
src
/
Metadata
/
/home/u417168693/domains/devtechera.com/public_html/vendor/phpunit/phpunit/src/Metadata
mkdir
upload
Name
Size
Mode
Actions
Api/
-
0755
rm
Exception/
-
0755
rm
Parser/
-
0755
rm
Version/
-
0755
rm
After.php
976
0644
edit
dl
rm
AfterClass.php
986
0644
edit
dl
rm
BackupGlobals.php
842
0644
edit
dl
rm
BackupStaticProperties.php
860
0644
edit
dl
rm
Before.php
978
0644
edit
dl
rm
BeforeClass.php
988
0644
edit
dl
rm
Covers.php
973
0644
edit
dl
rm
CoversClass.php
1235
0644
edit
dl
rm
CoversDefaultClass.php
1002
0644
edit
dl
rm
CoversFunction.php
1253
0644
edit
dl
rm
CoversMethod.php
1595
0644
edit
dl
rm
CoversNothing.php
545
0644
edit
dl
rm
CoversTrait.php
1235
0644
edit
dl
rm
DataProvider.php
1317
0644
edit
dl
rm
DependsOnClass.php
1356
0644
edit
dl
rm
DependsOnMethod.php
1686
0644
edit
dl
rm
DisableReturnValueGenerationForTestDoubles.php
603
0644
edit
dl
rm
DoesNotPerformAssertions.php
567
0644
edit
dl
rm
ExcludeGlobalVariableFromBackup.php
1107
0644
edit
dl
rm
ExcludeStaticPropertyFromBackup.php
1371
0644
edit
dl
rm
Group.php
992
0644
edit
dl
rm
IgnoreDeprecations.php
555
0644
edit
dl
rm
IgnorePhpunitDeprecations.php
661
0644
edit
dl
rm
Metadata.php
23790
0644
edit
dl
rm
MetadataCollection.php
15175
0644
edit
dl
rm
MetadataCollectionIterator.php
1211
0644
edit
dl
rm
PostCondition.php
992
0644
edit
dl
rm
PreCondition.php
990
0644
edit
dl
rm
PreserveGlobalState.php
854
0644
edit
dl
rm
RequiresFunction.php
1035
0644
edit
dl
rm
RequiresMethod.php
1321
0644
edit
dl
rm
RequiresOperatingSystem.php
1067
0644
edit
dl
rm
RequiresOperatingSystemFamily.php
1124
0644
edit
dl
rm
RequiresPhp.php
968
0644
edit
dl
rm
RequiresPhpExtension.php
1688
0644
edit
dl
rm
RequiresPhpunit.php
976
0644
edit
dl
rm
RequiresPhpunitExtension.php
1086
0644
edit
dl
rm
RequiresSetting.php
1283
0644
edit
dl
rm
RunClassInSeparateProcess.php
569
0644
edit
dl
rm
RunInSeparateProcess.php
559
0644
edit
dl
rm
RunTestsInSeparateProcesses.php
573
0644
edit
dl
rm
Test.php
527
0644
edit
dl
rm
TestDox.php
961
0644
edit
dl
rm
TestWith.php
1414
0644
edit
dl
rm
Uses.php
969
0644
edit
dl
rm
UsesClass.php
1231
0644
edit
dl
rm
UsesDefaultClass.php
998
0644
edit
dl
rm
UsesFunction.php
1246
0644
edit
dl
rm
UsesMethod.php
1591
0644
edit
dl
rm
UsesTrait.php
1231
0644
edit
dl
rm
WithoutErrorHandler.php
557
0644
edit
dl
rm
Edit:
/home/u417168693/domains/devtechera.com/public_html/vendor/phpunit/phpunit/src/Metadata/Covers.php
(973B)
<?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 Covers extends Metadata { /** * @var non-empty-string */ private string $target; /** * @param 0|1 $level * @param non-empty-string $target */ protected function __construct(int $level, string $target) { parent::__construct($level); $this->target = $target; } public function isCovers(): true { return true; } /** * @return non-empty-string */ public function target(): string { return $this->target; } }
Save
cmd:
run