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
CoversClass.php (988 B)
Edit
Rename
Del
CoversClassesThatExtendClass.php (1022 B)
Edit
Rename
Del
CoversClassesThatImplementInterface.php (1.04 KB)
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
ExcludeGlobalVariableFromBackup.php (1.08 KB)
Edit
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
MetadataCollection.php (17.11 KB)
Edit
Rename
Del
MetadataCollectionIterator.php (1.29 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
RequiresEnvironmentVariable.php (1.09 KB)
Edit
Rename
Del
RequiresFunction.php (1.01 KB)
Edit
Rename
Del
RequiresMethod.php (1.29 KB)
Edit
Rename
Del
RequiresOperatingSystem.php (1.04 KB)
Edit
Rename
Del
RequiresOperatingSystemFamily.php (1.1 KB)
Edit
Rename
Del
RequiresPhp.php (974 B)
Edit
Rename
Del
RequiresPhpExtension.php (1.65 KB)
Edit
Rename
Del
RequiresPhpunit.php (982 B)
Edit
Rename
Del
RequiresPhpunitExtension.php (1.06 KB)
Edit
Rename
Del
RequiresSetting.php (1.25 KB)
Edit
Rename
Del
RunClassInSeparateProcess.php (569 B)
Edit
Rename
Del
RunInSeparateProcess.php (559 B)
Edit
Rename
Del
RunTestsInSeparateProcesses.php (573 B)
Edit
Rename
Del
Test.php (527 B)
Edit
Rename
Del
TestDox.php (961 B)
Edit
Rename
Del
TestDoxFormatter.php (1.29 KB)
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
UsesClassesThatImplementInterface.php (1.04 KB)
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
WithEnvironmentVariable.php (1.24 KB)
Edit
Rename
Del
WithoutErrorHandler.php (557 B)
Edit
Rename
Del
Edit: ExcludeStaticPropertyFromBackup.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 ExcludeStaticPropertyFromBackup extends Metadata { /** * @var class-string */ private string $className; /** * @var non-empty-string */ private string $propertyName; /** * @param int<0, 1> $level * @param class-string $className * @param non-empty-string $propertyName */ protected function __construct(int $level, string $className, string $propertyName) { parent::__construct($level); $this->className = $className; $this->propertyName = $propertyName; } public function isExcludeStaticPropertyFromBackup(): true { return true; } /** * @return class-string */ public function className(): string { return $this->className; } /** * @return non-empty-string */ public function propertyName(): string { return $this->propertyName; } }
Simpan