PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
phpunit
/
phpunit
/
src
/
Framework
/
Attributes
<?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_METHOD | Attribute::IS_REPEATABLE)] final class DependsOnClassUsingShallowClone { /** * @psalm-var class-string */ private readonly string $className; /** * @psalm-param class-string $className */ public function __construct(string $className) { $this->className = $className; } /** * @psalm-return class-string */ public function className(): string { return $this->className; } }
[-] RequiresFunction.php
[edit]
[-] BackupStaticProperties.php
[edit]
[-] IgnoreMethodForCodeCoverage.php
[edit]
[-] RunInSeparateProcess.php
[edit]
[-] IgnoreFunctionForCodeCoverage.php
[edit]
[-] PreCondition.php
[edit]
[-] DependsUsingDeepClone.php
[edit]
[-] TestDox.php
[edit]
[-] Small.php
[edit]
[-] DependsUsingShallowClone.php
[edit]
[+]
..
[-] AfterClass.php
[edit]
[-] CoversNothing.php
[edit]
[-] BeforeClass.php
[edit]
[-] CoversFunction.php
[edit]
[-] CodeCoverageIgnore.php
[edit]
[-] DependsOnClassUsingDeepClone.php
[edit]
[-] RunTestsInSeparateProcesses.php
[edit]
[-] DependsOnClassUsingShallowClone.php
[edit]
[-] RequiresSetting.php
[edit]
[-] DependsOnClass.php
[edit]
[-] ExcludeGlobalVariableFromBackup.php
[edit]
[-] Ticket.php
[edit]
[-] BackupGlobals.php
[edit]
[-] Test.php
[edit]
[-] PostCondition.php
[edit]
[-] DataProviderExternal.php
[edit]
[-] IgnoreDeprecations.php
[edit]
[-] RequiresOperatingSystemFamily.php
[edit]
[-] After.php
[edit]
[-] DependsExternalUsingShallowClone.php
[edit]
[-] IgnoreClassForCodeCoverage.php
[edit]
[-] RequiresMethod.php
[edit]
[-] TestWithJson.php
[edit]
[-] UsesClass.php
[edit]
[-] RunClassInSeparateProcess.php
[edit]
[-] PreserveGlobalState.php
[edit]
[-] ExcludeStaticPropertyFromBackup.php
[edit]
[-] Depends.php
[edit]
[-] UsesFunction.php
[edit]
[-] CoversClass.php
[edit]
[-] DoesNotPerformAssertions.php
[edit]
[-] WithoutErrorHandler.php
[edit]
[-] RequiresOperatingSystem.php
[edit]
[-] DependsExternal.php
[edit]
[-] RequiresPhpunit.php
[edit]
[-] RequiresPhp.php
[edit]
[-] DependsExternalUsingDeepClone.php
[edit]
[-] DataProvider.php
[edit]
[-] Medium.php
[edit]
[-] Before.php
[edit]
[-] RequiresPhpExtension.php
[edit]
[-] Large.php
[edit]
[-] TestWith.php
[edit]
[-] Group.php
[edit]