You are here

public function UpdateRunnerUtils::isIndependentUpdater in Scheduled Updates 8

File

src/UpdateRunnerUtils.php, line 163
Contains \Drupal\scheduled_updates\UpdateRunnerUtils.

Class

UpdateRunnerUtils
A service that runs all available updaters

Namespace

Drupal\scheduled_updates

Code

public function isIndependentUpdater(ScheduledUpdateTypeInterface $scheduledUpdateType) {
  return $this
    ->updateSupportsTypes($scheduledUpdateType, [
    'independent',
  ]);
}