| 1 | <?php |
||
| 17 | class HelloWorld extends AbstractExercise implements ExerciseInterface, CliExercise |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public function getName() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function getDescription() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return array |
||
| 38 | */ |
||
| 39 | public function getArgs() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return ExerciseType |
||
| 46 | */ |
||
| 47 | public function getType() |
||
| 51 | } |
||
| 52 |