crunchbutton/include/library/Crunchbutton/Cron/Job/DriversShiftWarningWeekly.php
2014-10-07 23:14:57 -03:00

12 lines
251 B
PHP

<?php
class Crunchbutton_Cron_Job_DriversShiftWarningWeekly extends Crunchbutton_Cron_Log {
public function run(){
Crunchbutton_Community_Shift::shiftWarningWeekly();
// it always must call finished method at the end
$this->finished();
}
}