class IniSetting
@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
@psalm-immutable
Hierarchy
- class \PHPUnit\TextUI\Configuration\IniSetting
Expanded class hierarchy of IniSetting
1 file declares its use of IniSetting
- Loader.php in vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Xml/ Loader.php
File
-
vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Value/ IniSetting.php, line 17
Namespace
PHPUnit\TextUI\ConfigurationView source
final class IniSetting {
private readonly string $name;
private readonly string $value;
public function __construct(string $name, string $value) {
$this->name = $name;
$this->value = $value;
}
public function name() : string {
return $this->name;
}
public function value() : string {
return $this->value;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
IniSetting::$name | private | property | |
IniSetting::$value | private | property | |
IniSetting::name | public | function | |
IniSetting::value | public | function | |
IniSetting::__construct | public | function |