Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
62 | public function apply(RestRequestOptions $options, ReflectionMethodWrapper $reflectionMethod) |
||
63 | { |
||
64 | if (!$this->enabled) { |
||
65 | $options->disableBodyValidation(); |
||
66 | return; |
||
67 | } |
||
68 | |||
69 | $options->setBodyValidationOptions( |
||
70 | (new ValidationOptions()) |
||
71 | ->setValidationGroups($this->groups) |
||
72 | ->setViolationPathMap($this->violationPathMap) |
||
73 | ); |
||
74 | } |
||
75 | } |
||
76 |