1 | <?php |
||
13 | class ReplaceCommandHookDispatcher extends HookDispatcher implements LoggerAwareInterface |
||
14 | { |
||
15 | |||
16 | use LoggerAwareTrait; |
||
17 | |||
18 | /** |
||
19 | * @return int |
||
20 | */ |
||
21 | public function hasReplaceCommandHook() |
||
25 | |||
26 | /** |
||
27 | * @return \callable[] |
||
28 | */ |
||
29 | public function getReplaceCommandHooks() |
||
38 | |||
39 | /** |
||
40 | * @param \Consolidation\AnnotatedCommand\CommandData $commandData |
||
41 | * |
||
42 | * @return callable |
||
43 | */ |
||
44 | public function getReplacementCommand(CommandData $commandData) |
||
66 | |||
67 | /** |
||
68 | * @param \Consolidation\AnnotatedCommand\CommandData $commandData |
||
69 | * |
||
70 | * @return array |
||
71 | */ |
||
72 | public function getReplacementCommandArguments(CommandData $commandData) { |
||
78 | } |
||
79 |