6 lines
127 B
PHP
6 lines
127 B
PHP
<?php
|
|
namespace Misuzu\Console;
|
|
|
|
interface CommandDispatchInterface {
|
|
public function dispatch(CommandArgs $args): void;
|
|
}
|