. namespace tool_task; /** * Checker class. Fake scheduled task used only to check that crontab settings are valid. * * @package tool_task * @copyright 2021 Jordi Pujol-Ahulló * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class scheduled_checker_task extends \core\task\scheduled_task { /** * Gets the checker task name. */ public function get_name() { return "Checker task"; } /** * Does nothing. */ public function execute() { } }