crunchbutton/include/library/Crunchbutton/Cron/Job/NotifyAboutNewUsers.php
2014-05-28 18:12:27 -03:00

12 lines
234 B
PHP

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