public function PHP_CodeCoverage_Report_Text::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/Text.php \PHP_CodeCoverage_Report_Text::__construct()
File
- vendor/
phpunit/ php-code-coverage/ src/ CodeCoverage/ Report/ Text.php, line 34
Class
- PHP_CodeCoverage_Report_Text
- Generates human readable output from an PHP_CodeCoverage object.
Code
public function __construct($lowUpperBound, $highLowerBound, $showUncoveredFiles, $showOnlySummary) {
$this->lowUpperBound = $lowUpperBound;
$this->highLowerBound = $highLowerBound;
$this->showUncoveredFiles = $showUncoveredFiles;
$this->showOnlySummary = $showOnlySummary;
}