Skeleton is ready
This commit is contained in:
18
app/Feature/Example/Command/DoSomething.php
Normal file
18
app/Feature/Example/Command/DoSomething.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Feature\Example\Command;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class DoSomething extends Command
|
||||
{
|
||||
protected $signature = 'example:do-something';
|
||||
protected $description = 'Do something example';
|
||||
|
||||
public function handle(): int
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user