You are here

public function ConfigMergeEvent::__construct in Config Merge 8

ConfigMergeEvent constructor.

Parameters

$config_name: The name of the configuration object being changed.

$logs: The logs array of merged or unmerged properties with the reason.

string $provider_type: The type of the configuration provider.

string $provider_name: The name of the configuration provider.

File

src/Event/ConfigMergeEvent.php, line 54

Class

ConfigMergeEvent
Class ConfigMergeEvent

Namespace

Drupal\config_merge\Event

Code

public function __construct($config_name, $logs, $provider_type = '', $provider_name = '') {
  $this->configName = $config_name;
  $this->logs = $logs;
  $this->providerType = $provider_type;
  $this->providerName = $provider_name;
}