123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace App\Console\Commands;
- use App\Utils\Helper;
- use Illuminate\Console\Command;
- class Test extends Command
- {
-
- protected $signature = 'test';
-
- protected $description = '';
-
- public function __construct()
- {
- parent::__construct();
- }
-
- public function handle()
- {
- }
- }
|