1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- class Test extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'test';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Command description';
- /**
- * @return bool
- * @throws \GuzzleHttp\Exception\GuzzleException
- */
- public function handle()
- {
-
- }
- }
|