crunchbutton/include/library/Crunchbutton/Cron/Job/DriversRemindAboutTheirShiftTomorrow.php

12 lines
282 B
PHP

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