misuzu/src/Console/CommandDispatchInterface.php

7 lines
127 B
PHP

<?php
namespace Misuzu\Console;
interface CommandDispatchInterface {
public function dispatch(CommandArgs $args): void;
}