1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace App\Console\Commands\SmartPush;
- use Illuminate\Console\Command;
- use App\Modules\OfficialAccount\Services\CustomMsgService;
- class PaidUserCustom extends Command
- {
-
- protected $signature = 'SmartPush:PaidUserCustom';
-
- protected $description = '已付费用户6小时后推送客服消息';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function handle()
- {
- $this->pay_user_custom();
- }
- public function pay_user_custom(){
- CustomMsgService::SmartPush('pay_daily_push');
- }
- }
|