X7ROOT File Manager
Current Path:
/opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Framework/Attributes
opt
/
cpanel
/
ea-wappspector
/
vendor
/
phpunit
/
phpunit
/
src
/
Framework
/
Attributes
/
??
..
??
After.php
(507 B)
??
AfterClass.php
(512 B)
??
BackupGlobals.php
(752 B)
??
BackupStaticProperties.php
(761 B)
??
Before.php
(508 B)
??
BeforeClass.php
(513 B)
??
CodeCoverageIgnore.php
(621 B)
??
CoversClass.php
(925 B)
??
CoversFunction.php
(961 B)
??
CoversNothing.php
(541 B)
??
DataProvider.php
(946 B)
??
DataProviderExternal.php
(1.25 KB)
??
Depends.php
(941 B)
??
DependsExternal.php
(1.25 KB)
??
DependsExternalUsingDeepClone.php
(1.26 KB)
??
DependsExternalUsingShallowClone.php
(1.26 KB)
??
DependsOnClass.php
(929 B)
??
DependsOnClassUsingDeepClone.php
(943 B)
??
DependsOnClassUsingShallowClone.php
(946 B)
??
DependsUsingDeepClone.php
(955 B)
??
DependsUsingShallowClone.php
(958 B)
??
DoesNotPerformAssertions.php
(552 B)
??
ExcludeGlobalVariableFromBackup.php
(1.02 KB)
??
ExcludeStaticPropertyFromBackup.php
(1.3 KB)
??
Group.php
(923 B)
??
IgnoreClassForCodeCoverage.php
(1015 B)
??
IgnoreDeprecations.php
(546 B)
??
IgnoreFunctionForCodeCoverage.php
(1.03 KB)
??
IgnoreMethodForCodeCoverage.php
(1.33 KB)
??
Large.php
(506 B)
??
Medium.php
(507 B)
??
PostCondition.php
(515 B)
??
PreCondition.php
(514 B)
??
PreserveGlobalState.php
(758 B)
??
RequiresFunction.php
(990 B)
??
RequiresMethod.php
(1.27 KB)
??
RequiresOperatingSystem.php
(1005 B)
??
RequiresOperatingSystemFamily.php
(1.01 KB)
??
RequiresPhp.php
(1000 B)
??
RequiresPhpExtension.php
(1.38 KB)
??
RequiresPhpunit.php
(1004 B)
??
RequiresSetting.php
(1.24 KB)
??
RunClassInSeparateProcess.php
(526 B)
??
RunInSeparateProcess.php
(522 B)
??
RunTestsInSeparateProcesses.php
(528 B)
??
Small.php
(506 B)
??
Test.php
(506 B)
??
TestDox.php
(898 B)
??
TestWith.php
(733 B)
??
TestWithJson.php
(904 B)
??
Ticket.php
(924 B)
??
UsesClass.php
(923 B)
??
UsesFunction.php
(959 B)
??
WithoutErrorHandler.php
(521 B)
Editing: Group.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; /** * @psalm-immutable * * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit */ #[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD | Attribute::IS_REPEATABLE)] final class Group { /** * @psalm-var non-empty-string */ private readonly string $name; /** * @psalm-param non-empty-string $name */ public function __construct(string $name) { $this->name = $name; } /** * @psalm-return non-empty-string */ public function name(): string { return $this->name; } }
Upload File
Create Folder