1 <?php
2 /**
3 * Classes that must be run daily extend this class.
4 *
5 * Please note: Subclasses of this task aren't extecuted automatically,
6 * they need to be triggered by an external automation tool like unix cron.
7 * See {@link ScheduledTask} for details.
8 *
9 * @todo Improve documentation
10 * @package sapphire
11 * @subpackage cron
12 */
13 class DailyTask extends ScheduledTask {
14
15 }