misuzu/src/Console/CommandDispatchInterface.php

6 lines
127 B
PHP

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