ReadinessCheckerInterface.php in Automatic Updates 7
File
ReadinessCheckers/ReadinessCheckerInterface.phpView source
<?php
/**
* Interface for objects capable of readiness checking.
*/
interface ReadinessCheckerInterface {
/**
* Run check.
*
* @return array
* An array of translatable strings.
*/
public static function run();
}
Interfaces
Name | Description |
---|---|
ReadinessCheckerInterface | Interface for objects capable of readiness checking. |