for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Vasoft\LaravelVersionIncrement\Commands;
use Illuminate\Console\Command;
class ListCommand extends Command
{
protected $signature = 'vs-version:list';
protected $description = 'List registered commit types and scopes';
public function handle(?CommandRunner $runner = null): int
$runner ??= new CommandRunner();
$runner->list();
return self::SUCCESS;
}