27 lines
666 B
PHP
27 lines
666 B
PHP
<?php
|
||
|
||
namespace process;
|
||
|
||
use app\common\service\SendMsgCronJobService;
|
||
use Workerman\Crontab\Crontab;
|
||
|
||
class Task
|
||
{
|
||
public function onWorkerStart()
|
||
{
|
||
|
||
// 每天的7点50执行,注意这里省略了秒位
|
||
new Crontab('0 10 * * *', function(){
|
||
//上课前一天提醒教师、学生、家长
|
||
(new SendMsgCronJobService())->classBeginMsgToTeacherBeforeDay();
|
||
});
|
||
|
||
// 每分钟执行一次
|
||
new Crontab('0 */1 * * * *', function(){
|
||
//上课前10分钟提醒教师、学生、家长
|
||
(new SendMsgCronJobService())->classBeginMsgToMsgBeforeTenMinute();
|
||
});
|
||
|
||
}
|
||
}
|