function Issue::__construct
Same name in this branch
- 11.1.x vendor/phpunit/phpunit/src/Runner/TestResult/Issue.php \PHPUnit\TestRunner\TestResult\Issues\Issue::__construct()
@psalm-param non-empty-string $file @psalm-param positive-int $line @psalm-param non-empty-string $hash @psalm-param non-empty-string $description
File
-
vendor/
phpunit/ phpunit/ src/ Runner/ Baseline/ Issue.php, line 70
Class
- Issue
- @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
Namespace
PHPUnit\Runner\BaselineCode
private function __construct(string $file, int $line, string $hash, string $description) {
$this->file = $file;
$this->line = $line;
$this->hash = $hash;
$this->description = $description;
}