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