Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
35 | 1 | protected function configureOptions(OptionsResolver $resolver): void |
|
36 | { |
||
37 | // available options |
||
38 | 1 | $resolver->setDefined(['idCategory']); |
|
39 | |||
40 | // validate / format options |
||
41 | 1 | $resolver->setRequired('idCategory'); |
|
42 | 1 | $resolver->setNormalizer('idCategory', $this->normalizerFactory->getClosure('int')); |
|
43 | } |
||
45 |