sintonia/backend/cron/CronJob.php
paul.baranowski e946e6a84e CC-1695 Remove Campcaster Studio and make install easier
Changed backend dir to new structure
2010-09-30 16:02:15 -04:00

17 lines
No EOL
267 B
PHP
Executable file

<?php
/**
* Cron jobs handling abstract class
*
* @package Campcaster
* @subpackage StorageServer.Cron
*/
class CronJob
{
/**
* The croncall.php call this function after the objectcreation.
*/
function execute()
{
}
}
?>