. */ interface ICron { /** * Constructor * * @param MySQL $sql */ public function __construct(MySQL $sql); /** * Get the friendly name of the cronjob * * @return string friendly name of the cronjob */ public function getName(); /** * Run the cronjob * * @return plain-text output */ public function run(); } ?>