| 1 | <?php |
||
| 18 | class ArrayWeReduce extends AbstractExercise implements |
||
| 19 | ExerciseInterface, |
||
| 20 | CliExercise, |
||
| 21 | FunctionRequirementsExerciseCheck |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getName() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | public function getDescription() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return array |
||
| 41 | */ |
||
| 42 | public function getArgs() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return ExerciseType |
||
| 49 | */ |
||
| 50 | public function getType() |
||
| 54 | |||
| 55 | |||
| 56 | /** |
||
| 57 | * @return string[] |
||
| 58 | */ |
||
| 59 | public function getRequiredFunctions() |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @return string[] |
||
| 66 | */ |
||
| 67 | public function getBannedFunctions() |
||
| 71 | |||
| 72 | /** |
||
| 73 | * @param ExerciseDispatcher $dispatcher |
||
| 74 | */ |
||
| 75 | public function configure(ExerciseDispatcher $dispatcher) |
||
| 79 | } |
||
| 80 |