17 lines
264 B
PHP
Executable file
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()
|
|
{
|
|
}
|
|
}
|
|
|