You are here

public static function PendingUpdatesValidator::getSubscribedEvents in Automatic Updates 8.2

File

src/Validator/PendingUpdatesValidator.php, line 77

Class

PendingUpdatesValidator
Validates that there are no pending database updates.

Namespace

Drupal\automatic_updates\Validator

Code

public static function getSubscribedEvents() {
  return [
    AutomaticUpdatesEvents::PRE_START => 'checkPendingUpdates',
    AutomaticUpdatesEvents::READINESS_CHECK => 'checkPendingUpdates',
  ];
}