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