crunchbutton/include/library/Crunchbutton/Cron/Job/DriversScheduleWarning.php
2014-05-27 20:08:51 -03:00

12 lines
252 B
PHP

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