class Text
Same name in this branch
- 11.1.x vendor/phpunit/php-code-coverage/src/Report/Text.php \SebastianBergmann\CodeCoverage\Report\Text
- 11.1.x vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/TestDox/Text.php \PHPUnit\TextUI\XmlConfiguration\Logging\TestDox\Text
- 11.1.x vendor/squizlabs/php_codesniffer/src/Generators/Text.php \PHP_CodeSniffer\Generators\Text
- 11.1.x core/modules/views/src/Plugin/views/area/Text.php \Drupal\views\Plugin\views\area\Text
@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
@internal This class is not covered by the backward compatibility promise for PHPUnit
@psalm-immutable
Hierarchy
- class \PHPUnit\TextUI\XmlConfiguration\CodeCoverage\Report\Text
Expanded class hierarchy of Text
2 files declare their use of Text
- CodeCoverage.php in vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Xml/ CodeCoverage/ CodeCoverage.php - Loader.php in vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Xml/ Loader.php
130 string references to 'Text'
- badge.component.yml in core/
profiles/ demo_umami/ themes/ umami/ components/ badge/ badge.component.yml - core/profiles/demo_umami/themes/umami/components/badge/badge.component.yml
- block_content.schema.yml in core/
modules/ block_content/ config/ schema/ block_content.schema.yml - core/modules/block_content/config/schema/block_content.schema.yml
- claro_preprocess_input in core/
themes/ claro/ claro.theme - Implements template_preprocess_HOOK() for input.
- comment.schema.yml in core/
modules/ comment/ config/ schema/ comment.schema.yml - core/modules/comment/config/schema/comment.schema.yml
- contact.schema.yml in core/
modules/ contact/ config/ schema/ contact.schema.yml - core/modules/contact/config/schema/contact.schema.yml
File
-
vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Xml/ CodeCoverage/ Report/ Text.php, line 21
Namespace
PHPUnit\TextUI\XmlConfiguration\CodeCoverage\ReportView source
final class Text {
private readonly File $target;
private readonly bool $showUncoveredFiles;
private readonly bool $showOnlySummary;
public function __construct(File $target, bool $showUncoveredFiles, bool $showOnlySummary) {
$this->target = $target;
$this->showUncoveredFiles = $showUncoveredFiles;
$this->showOnlySummary = $showOnlySummary;
}
public function target() : File {
return $this->target;
}
public function showUncoveredFiles() : bool {
return $this->showUncoveredFiles;
}
public function showOnlySummary() : bool {
return $this->showOnlySummary;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
Text::$showOnlySummary | private | property | |
Text::$showUncoveredFiles | private | property | |
Text::$target | private | property | |
Text::showOnlySummary | public | function | |
Text::showUncoveredFiles | public | function | |
Text::target | public | function | |
Text::__construct | public | function |