You are here

public function ConfigurationUpdateEvent::__construct in Update helper 2.x

Same name and namespace in other branches
  1. 8 src/Events/ConfigurationUpdateEvent.php \Drupal\update_helper\Events\ConfigurationUpdateEvent::__construct()

Configuration update event.

Parameters

string $module: Module name.

string $updateName: Update name.

int $warningCount: Count of warnings occurred during update execution.

File

src/Events/ConfigurationUpdateEvent.php, line 45

Class

ConfigurationUpdateEvent
Event for configuration update execution.

Namespace

Drupal\update_helper\Events

Code

public function __construct($module, $updateName, $warningCount) {
  $this->module = $module;
  $this->updateName = $updateName;
  $this->warningCount = $warningCount;
}