You are here

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

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

Get status for configuration update.

Return value

bool Returns status for configuration update.

File

src/Events/ConfigurationUpdateEvent.php, line 77

Class

ConfigurationUpdateEvent
Event for configuration update execution.

Namespace

Drupal\update_helper\Events

Code

public function isSuccessful() {
  return $this->warningCount === 0;
}