<?php
namespace {{namespace}};

use TypeRocket\Console\Command;

class {{command}} extends Command
{
    protected $command = [
        '{{name}}',
        'Short description here',
        'Longer help text goes here.',
    ];

    protected function config()
    {
        // If you want to accept arguments
        // $this->addArgument('arg', self::REQUIRED, 'Description');
    }

    public function exec()
    {
        // When command executes
        $this->success('Execute!');
    }
}