| Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Console/Commands/ |
| Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Console/Commands/TestCommand.php |
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class TestCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'app:test-command';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
*/
public function handle(): void {}
}