| 1 | <?php |
||
| 18 | class PeaceWalk extends AbstractExercise implements ExerciseInterface, CliExercise, FunctionRequirementsExerciseCheck |
||
| 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 | /** |
||
| 53 | * @return string[] |
||
| 54 | */ |
||
| 55 | public function getRequiredFunctions() |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return string[] |
||
| 62 | */ |
||
| 63 | public function getBannedFunctions() |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @param ExerciseDispatcher $dispatcher |
||
| 70 | */ |
||
| 71 | public function configure(ExerciseDispatcher $dispatcher) |
||
| 75 | } |
||
| 76 |