Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
10 | public function __construct() |
||
11 | { |
||
12 | $normalizers = [ |
||
13 | new QuestionsNormalizer( |
||
14 | new QuestionNormalizer( |
||
15 | new CategoryNormalizer(), |
||
16 | new AnswerNormalizer() |
||
17 | ) |
||
18 | ), |
||
19 | ]; |
||
20 | $encoders = [ |
||
21 | new JsonEncoder(), |
||
22 | ]; |
||
23 | |||
24 | parent::__construct($normalizers, $encoders); |
||
25 | } |
||
27 |