123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace App\Console\Commands\SmartPush;
- use App\Modules\OfficialAccount\Services\ForceSubscribeDelayMsgService;
- use Illuminate\Console\Command;
- class ForceSubscribeDelayMsg extends Command
- {
-
- protected $signature = 'SmartPush:ForceSubscribeDelayMsg';
-
- protected $description = '关注延迟';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function handle()
- {
- $this->send();
- }
- private function send()
- {
- ForceSubscribeDelayMsgService::getSendList(120);
- }
- }
|