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