| 1 | <?php |
||
| 18 | class HttpUpperCaserer implements ExerciseInterface, CgiOutputExerciseCheck |
||
| 19 | { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var Generator |
||
| 23 | */ |
||
| 24 | private $faker; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * HttpUpperCaserer constructor. |
||
| 28 | * @param Generator $faker |
||
| 29 | */ |
||
| 30 | public function __construct(Generator $faker) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getName() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function getDescription() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function getSolution() |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return string |
||
| 61 | */ |
||
| 62 | public function getProblem() |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @return null |
||
| 69 | */ |
||
| 70 | public function tearDown() |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @return RequestInterface[] |
||
| 76 | */ |
||
| 77 | public function getRequests() |
||
| 84 | } |
||
| 85 |