1 | <?php |
||
28 | class Application extends ConfigHandler |
||
29 | { |
||
30 | /** |
||
31 | * Composer IO Proxy |
||
32 | * |
||
33 | * @var \sebastianfeldmann\CaptainHook\Console\IO\ComposerIO |
||
34 | */ |
||
35 | protected $io; |
||
36 | |||
37 | /** |
||
38 | * Set the composer application IO. |
||
39 | * |
||
40 | * @param \Composer\IO\IOInterface $io |
||
41 | */ |
||
42 | 1 | public function setProxyIO(IOInterface $io) |
|
46 | |||
47 | /** |
||
48 | * Execute hook. |
||
49 | * |
||
50 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
51 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
52 | * @return int |
||
53 | */ |
||
54 | 1 | public function doRun(InputInterface $input, OutputInterface $output) |
|
61 | } |
||
62 |