| 1 | <?php |
||
| 25 | class CommandHelper { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get a checkbox. |
||
| 29 | * |
||
| 30 | * @param bool $checked Checked ? |
||
| 31 | * @return string Returns the checkbox. |
||
| 32 | */ |
||
| 33 | public static function getCheckbox($checked) { |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Create a Symfony style. |
||
| 42 | * |
||
| 43 | * @param InputInterface $input The input. |
||
| 44 | * @param OutputInterface $output The output. |
||
| 45 | * @return StyleInterface Returns the Symfony style. |
||
| 46 | */ |
||
| 47 | public static function newSymfonyStyle(InputInterface $input, OutputInterface $output) { |
||
| 50 | } |
||
| 51 |