misuzu/src/Console/CommandInterface.php

8 lines
178 B
PHP

<?php
namespace Misuzu\Console;
interface CommandInterface extends CommandDispatchInterface {
public function getName(): string;
public function getSummary(): string;
}