sintonia/application/models/cron/CronJob.php
paul.baranowski 15153727c1 CC-1971
Remove "?>" from the end of pure-PHP files to prevent "HEADERS ALREADY SENT"
2011-02-22 18:22:31 +01:00

17 lines
264 B
PHP
Executable file

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