<?php

namespace $NAMESPACE$;

use Illuminate\Console\Command;

class $CLASS$ extends Command
{
    protected $signature = '$COMMAND_NAME$';

    protected $description = 'Command description.';

    public function handle(): int
    {
        //
    }
}
