123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace App\Console\Commands;
- use App\Service\CustomerPondService;
- use App\Service\Weixin\WeixinService;
- use Illuminate\Console\Command;
- class WxArticle extends Command
- {
- /**
- * The console command description.
- *
- * @var string
- */
- protected $signature = 'command:';
- protected $description = '';
- public function __construct()
- {
- parent::__construct();
- }
- public function handle()
- {
- $service = new WeixinService();
- $service->getArticle();
- }
- }
|