19 lines
313 B
PHP
19 lines
313 B
PHP
<?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;
|
|
}
|
|
}
|