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