1 | <?php |
||
28 | abstract class AbstractCommand extends Command { |
||
29 | |||
30 | /** |
||
31 | * Get a checkbox. |
||
32 | * |
||
33 | * @param bool $checked Checked ? |
||
34 | * @return string Returns the checkbox. |
||
35 | */ |
||
36 | protected function getCheckbox($checked) { |
||
39 | |||
40 | /** |
||
41 | * Create a style. |
||
42 | * |
||
43 | * @param InputInterface $input The input. |
||
44 | * @param OutputInterface $output The ouptut. |
||
45 | * @return StyleInterface Returns the style. |
||
46 | */ |
||
47 | protected function newStyle(InputInterface $input, OutputInterface $output) { |
||
50 | |||
51 | } |
||
52 |