Files
acmeclient/src/Commands/Command.php
Niklas Keller 2dba4a852a Fix code style
2017-12-29 19:23:48 +01:00

13 lines
229 B
PHP

<?php
namespace Kelunik\AcmeClient\Commands;
use Amp\Promise;
use League\CLImate\Argument\Manager;
interface Command {
public function execute(Manager $args): Promise;
public static function getDefinition(): array;
}