| 1 | <?php |
||
| 23 | abstract class AbstractConsoleTask extends AbstractTypo3Task |
||
| 24 | { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * getConsoleCommand |
||
| 28 | * |
||
| 29 | * @param $consoleCommandName |
||
| 30 | * @param array $options |
||
| 31 | * |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | protected function getConsoleCommand(string $consoleCommandName, array $options): string |
||
| 42 | |||
| 43 | /** |
||
| 44 | * getOptions |
||
| 45 | * |
||
| 46 | * @param array $defaults |
||
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | protected function getOptions(array $defaults): array |
||
| 53 | } |
||
| 54 |