13 lines
283 B
PHP
13 lines
283 B
PHP
<?php
|
|
|
|
class Crunchbutton_Cron_Job_RenotifyDrivers extends Crunchbutton_Cron_Log {
|
|
|
|
public function run(){
|
|
|
|
$notification = new Crunchbutton_Admin_Notification();
|
|
$notification->resendNotification();
|
|
|
|
// it always must call finished method at the end
|
|
$this->finished();
|
|
}
|
|
} |