| 1 | <?php |
||
| 15 | class HelloWorld extends AbstractExercise implements ExerciseInterface, CliExercise |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function getName() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getDescription() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return array |
||
| 35 | */ |
||
| 36 | public function getArgs() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return ExerciseType |
||
| 43 | */ |
||
| 44 | public function getType() |
||
| 48 | } |
||
| 49 |