1 <?php
2 /**
3 * Classes that must be run yearly 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 * @package sapphire
10 * @subpackage cron
11 */
12 class YearlyTask extends ScheduledTask {
13
14 }
15 ?>