Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. IniSetting.php

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\Configuration
View 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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal