1 | <?php |
||
14 | class FetchApplicationOutput implements ExecutableInterface |
||
15 | { |
||
16 | /** @var Command */ |
||
17 | private $command; |
||
18 | |||
19 | /** |
||
20 | * @param Command $command |
||
21 | */ |
||
22 | public function setCommand(Command $command) |
||
26 | |||
27 | /** |
||
28 | * @param mixed $input |
||
29 | * @return mixed |
||
30 | * @throws ExecutableException |
||
31 | */ |
||
32 | public function execute($input = null) |
||
53 | } |