12 lines
273 B
PHP
12 lines
273 B
PHP
<?php
|
|
|
|
class Crunchbutton_Cron_Job_DriversRemindMinutesAboutTheirShift extends Crunchbutton_Cron_Log {
|
|
|
|
public function run(){
|
|
|
|
Crunchbutton_Community_Shift::warningDriversBeforeTheirShift();
|
|
|
|
// it always must call finished method at the end
|
|
$this->finished();
|
|
}
|
|
} |