12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace App\Console\Commands;
- use App\Service\ThirdService;
- use Illuminate\Console\Command;
- use Illuminate\Support\Facades\DB;
- class LsTest extends Command
- {
- /**
- * The console command description.
- *
- * @var string
- */
- protected $signature = 'set:lsTest';
- protected $description = '';
- protected $process;
- protected $key = 'lsTest';
- public function __construct()
- {
- parent::__construct();
- }
- public function handle()
- {
- $service = new ThirdService();
- $service->pushThird();
- }
- }
|