You are here

public function Settings::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Site/Settings.php \Drupal\Core\Site\Settings::__construct()

Constructor.

Parameters

array $settings: Array with the settings.

File

core/lib/Drupal/Core/Site/Settings.php, line 65

Class

Settings
Read only settings that are initialized with the class.

Namespace

Drupal\Core\Site

Code

public function __construct(array $settings) {
  $this->storage = $settings;
  self::$instance = $this;
}