class PHPUnit
Same name in this branch
- 11.1.x vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/PHPUnit.php \PHPUnit\TextUI\XmlConfiguration\PHPUnit
@psalm-immutable
@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
Hierarchy
- class \PHPUnit\Event\Runtime\PHPUnit
Expanded class hierarchy of PHPUnit
2 string references to 'PHPUnit'
- BuildInformation::setGeneratorVersions in vendor/
phpunit/ php-code-coverage/ src/ Report/ Xml/ BuildInformation.php - TestCase::createGlobalStateSnapshot in vendor/
phpunit/ phpunit/ src/ Framework/ TestCase.php
File
-
vendor/
phpunit/ phpunit/ src/ Event/ Value/ Runtime/ PHPUnit.php, line 19
Namespace
PHPUnit\Event\RuntimeView source
final class PHPUnit {
private readonly string $versionId;
private readonly string $releaseSeries;
public function __construct() {
$this->versionId = Version::id();
$this->releaseSeries = Version::series();
}
public function versionId() : string {
return $this->versionId;
}
public function releaseSeries() : string {
return $this->releaseSeries;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
PHPUnit::$releaseSeries | private | property | |
PHPUnit::$versionId | private | property | |
PHPUnit::releaseSeries | public | function | |
PHPUnit::versionId | public | function | |
PHPUnit::__construct | public | function |