misuzu/src/Console/CommandInterface.php

8 lines
178 B
PHP
Raw Normal View History

2022-09-13 13:14:49 +00:00
<?php
namespace Misuzu\Console;
interface CommandInterface extends CommandDispatchInterface {
public function getName(): string;
public function getSummary(): string;
}