class Large
Same name in this branch
- 11.1.x vendor/phpunit/phpunit/src/Framework/TestSize/Large.php \PHPUnit\Framework\TestSize\Large
- 11.1.x vendor/phpunit/phpunit/src/Framework/Attributes/Large.php \PHPUnit\Framework\Attributes\Large
@psalm-immutable
Hierarchy
- class \SebastianBergmann\CodeCoverage\Test\TestSize\TestSize
Expanded class hierarchy of Large
11 string references to 'Large'
- AnnotationParser::forClass in vendor/
phpunit/ phpunit/ src/ Metadata/ Parser/ AnnotationParser.php - @psalm-param class-string $className
- AnnotationParser::forMethod in vendor/
phpunit/ phpunit/ src/ Metadata/ Parser/ AnnotationParser.php - @psalm-param class-string $className @psalm-param non-empty-string $methodName
- AttributeParser::forClass in vendor/
phpunit/ phpunit/ src/ Metadata/ Parser/ AttributeParser.php - @psalm-param class-string $className
- core.entity_view_display.media.image.default.yml in core/
profiles/ standard/ config/ optional/ core.entity_view_display.media.image.default.yml - core/profiles/standard/config/optional/core.entity_view_display.media.image.default.yml
- core.entity_view_display.media.image.default.yml in core/
recipes/ image_media_type/ config/ core.entity_view_display.media.image.default.yml - core/recipes/image_media_type/config/core.entity_view_display.media.image.default.yml
File
-
vendor/
phpunit/ php-code-coverage/ src/ TestSize/ Large.php, line 15
Namespace
SebastianBergmann\CodeCoverage\Test\TestSizeView source
final class Large extends Known {
/**
* @psalm-assert-if-true Large $this
*/
public function isLarge() : bool {
return true;
}
public function isGreaterThan(TestSize $other) : bool {
return !$other->isLarge();
}
public function asString() : string {
return 'large';
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
Known::isKnown | public | function | @psalm-assert-if-true Known $this | Overrides TestSize::isKnown | |
Large::asString | public | function | Overrides TestSize::asString | ||
Large::isGreaterThan | public | function | Overrides Known::isGreaterThan | ||
Large::isLarge | public | function | @psalm-assert-if-true Large $this | Overrides TestSize::isLarge | |
TestSize::isMedium | public | function | @psalm-assert-if-true Medium $this | 1 | |
TestSize::isSmall | public | function | @psalm-assert-if-true Small $this | 1 | |
TestSize::isUnknown | public | function | @psalm-assert-if-true Unknown $this | 1 | |
TestSize::large | public static | function | |||
TestSize::medium | public static | function | |||
TestSize::small | public static | function | |||
TestSize::unknown | public static | function |