<?php declare(strict_types=1);
namespace Inhere\Console\Examples\Command;
use Inhere\Console\Command;
use Inhere\Console\IO\Output;
class TestCommand extends Command
{
protected static $name = 'test';
protected static $description = 'this is a test independent command';
public function execute($input, $output)
{
$output->write('hello, this in ' . __METHOD__);
}
}