silverstripe-framework/cli/YearlyTask.php
Normann Lou 03cabb839d For some project we need server run some scheduled task yearly, such as upgrade high school students for GSO.
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@48899 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-01-31 03:46:21 +00:00

16 lines
220 B
PHP

<?php
/**
* @package sapphire
* @subpackage cron
*/
/**
* Classes that must be run yearly extend this class
* @package sapphire
* @subpackage cron
*/
class YearlyTask extends ScheduledTask {
}
?>