1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace App\Console\Commands\SmartPush;
- use Illuminate\Console\Command;
- use App\Modules\OfficialAccount\Services\CustomMsgService;
- class LongChapterCustom extends Command
- {
-
- protected $signature = 'SmartPush:LongChapterCustom';
-
- protected $description = '推送长篇客服';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function handle()
- {
- }
- public function LongChapterCustom(){
- CustomMsgService::SimpleSmartPush('custom_short_long_chapter');
- }
- }
|