File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/phpunit/phpunit/src/Framework/Attributes
Upload
[..]
After.php (719 B)
Edit
Rename
Del
AfterClass.php (724 B)
Edit
Rename
Del
BackupGlobals.php (746 B)
Edit
Rename
Del
BackupStaticProperties.php (755 B)
Edit
Rename
Del
Before.php (720 B)
Edit
Rename
Del
BeforeClass.php (725 B)
Edit
Rename
Del
CoversClass.php (901 B)
Edit
Rename
Del
CoversNothing.php (544 B)
Edit
Rename
Del
CoversTrait.php (901 B)
Edit
Rename
Del
Depends.php (917 B)
Edit
Rename
Del
DependsExternalUsingShallowClone.php (1.22 KB)
Edit
Rename
Del
DependsOnClass.php (905 B)
Edit
Rename
Del
DependsUsingShallowClone.php (934 B)
Edit
Rename
Del
DisableReturnValueGenerationForTestDoubles.php (546 B)
Edit
Rename
Del
DoesNotPerformAssertions.php (555 B)
Edit
Rename
Del
ExcludeGlobalVariableFromBackup.php (1023 B)
Edit
Rename
Del
Group.php (899 B)
Edit
Rename
Del
IgnoreDeprecations.php (972 B)
Edit
Rename
Del
IgnorePhpunitDeprecations.php (648 B)
Edit
Rename
Del
IgnorePhpunitWarnings.php (949 B)
Edit
Rename
Del
Large.php (509 B)
Edit
Rename
Del
Medium.php (510 B)
Edit
Rename
Del
PostCondition.php (727 B)
Edit
Rename
Del
PreCondition.php (726 B)
Edit
Rename
Del
PreserveGlobalState.php (752 B)
Edit
Rename
Del
RequiresPhp.php (976 B)
Edit
Rename
Del
RequiresPhpExtension.php (1.33 KB)
Edit
Rename
Del
RequiresPhpunit.php (980 B)
Edit
Rename
Del
Small.php (509 B)
Edit
Rename
Del
Test.php (509 B)
Edit
Rename
Del
TestDox.php (874 B)
Edit
Rename
Del
TestDoxFormatter.php (899 B)
Edit
Rename
Del
TestWithJson.php (1.14 KB)
Edit
Rename
Del
Ticket.php (900 B)
Edit
Rename
Del
UsesClass.php (899 B)
Edit
Rename
Del
UsesFunction.php (935 B)
Edit
Rename
Del
UsesMethod.php (1.19 KB)
Edit
Rename
Del
UsesNamespace.php (915 B)
Edit
Rename
Del
UsesTrait.php (899 B)
Edit
Rename
Del
WithoutErrorHandler.php (524 B)
Edit
Rename
Del
Edit: DependsOnClass.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\Framework\Attributes; use Attribute; /** * @immutable * * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit */ #[Attribute(Attribute::TARGET_METHOD | Attribute::IS_REPEATABLE)] final readonly class DependsOnClass { /** * @var class-string */ private string $className; /** * @param class-string $className */ public function __construct(string $className) { $this->className = $className; } /** * @return class-string */ public function className(): string { return $this->className; } }
Simpan