1 | <?php |
||
14 | class CustomCommandFacade extends AbstractFacade |
||
15 | { |
||
16 | /** |
||
17 | * @param array $commands |
||
18 | * @param string $directory |
||
19 | * @param bool $recursive |
||
20 | * |
||
21 | * @return array |
||
22 | */ |
||
23 | 3 | public function hydrateCommands(array $commands, string $directory, bool $recursive) |
|
27 | |||
28 | /** |
||
29 | * @param string $command |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | public function runShell(string $command) : string |
||
37 | |||
38 | /** |
||
39 | * @return array |
||
40 | * @throws \Xervice\Config\Exception\ConfigNotFound |
||
41 | */ |
||
42 | public function getCommands() |
||
50 | } |