silverstripe-framework/tasks/ScheduledTask.php
Ingo Schommer ab3ef0196d MINOR Moved tasks from sapphire/cli to new folder sapphire/tasks
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@65149 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-11-03 13:59:53 +00:00

12 lines
240 B
PHP
Executable File

<?php
/**
* Abstract task representing scheudled tasks
* @todo Improve documentation
* @package sapphire
* @subpackage cron
*/
abstract class ScheduledTask extends CliController {
// this class exists as a logical extension
}
?>