public function ConfigurationUpdateEvent::isSuccessful in Update helper 8
Same name and namespace in other branches
- 2.x 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\EventsCode
public function isSuccessful() {
return $this->warningCount === 0;
}