8 lines
178 B
PHP
8 lines
178 B
PHP
|
<?php
|
||
|
namespace Misuzu\Console;
|
||
|
|
||
|
interface CommandInterface extends CommandDispatchInterface {
|
||
|
public function getName(): string;
|
||
|
public function getSummary(): string;
|
||
|
}
|