1 | <?php |
||
15 | class ElixirMixCommand extends ContainerAwareCommand |
||
16 | { |
||
17 | /** |
||
18 | * Configure. |
||
19 | */ |
||
20 | public function configure() |
||
25 | |||
26 | /** |
||
27 | * @param InputInterface $input |
||
28 | * @param OutputInterface $output |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function execute(InputInterface $input, OutputInterface $output) |
||
56 | |||
57 | /** |
||
58 | * @param OutputInterface $output |
||
59 | * @param string $error |
||
60 | * |
||
61 | * @return mixed |
||
62 | */ |
||
63 | private function writeError(OutputInterface $output, $error) |
||
67 | |||
68 | /** |
||
69 | * @param OutputInterface $output |
||
70 | * @param string $message |
||
71 | * |
||
72 | * @return mixed |
||
73 | */ |
||
74 | private function writeInfo(OutputInterface $output, $message) |
||
78 | |||
79 | /** |
||
80 | * @param $appDir |
||
81 | * |
||
82 | * @return string |
||
83 | */ |
||
84 | private function getRootDir($appDir) |
||
88 | } |
||
89 |