You are here

ReadinessCheckerInterface.php in Automatic Updates 8

File

src/ReadinessChecker/ReadinessCheckerInterface.php
View source
<?php

namespace Drupal\automatic_updates\ReadinessChecker;


/**
 * Interface for objects capable of readiness checking.
 */
interface ReadinessCheckerInterface {

  /**
   * Run check.
   *
   * @return array
   *   An array of translatable strings.
   */
  public function run();

}

Interfaces

Namesort descending Description
ReadinessCheckerInterface Interface for objects capable of readiness checking.