1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace App\Console\Commands\SmartPush;
- use Illuminate\Console\Command;
- use App\Modules\OfficialAccount\Services\CustomMsgService;
- class PaidPushPointBook extends Command
- {
-
- protected $signature = 'SmartPush:PaidPushPointBook';
-
- protected $description = '已付费推送定制书籍';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function handle()
- {
- $this->paid_push_point_book();
- }
- public function paid_push_point_book(){
- CustomMsgService::SmartPush('paid_point_push');
- }
- }
|