1 | <?php |
||
20 | class ProxyCommand extends BaseCommand |
||
21 | { |
||
22 | /** |
||
23 | * @var ComposerAlias |
||
24 | */ |
||
25 | protected $composerAlias; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $forwardCommand; |
||
31 | |||
32 | protected $withArguments = false; |
||
33 | |||
34 | public function __construct($name, ComposerAlias $composerAlias) |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function configure() |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | public function execute(InputInterface $input, OutputInterface $output) |
||
69 | |||
70 | /** |
||
71 | * {@inheritdoc} |
||
72 | */ |
||
73 | public function isProxyCommand() |
||
77 | |||
78 | /** |
||
79 | * @param InputInterface $input |
||
80 | * @param OutputInterface $output |
||
81 | * |
||
82 | * @throws \Exception |
||
83 | */ |
||
84 | protected function runOneProxyCommand($input, $output) |
||
93 | |||
94 | protected function getForwardCommand($name) |
||
98 | } |
||
99 |