Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
37 | 3 | public function __construct( |
|
38 | $name, |
||
39 | array $groups = [], |
||
40 | FieldDenormalizerInterface $fieldDenormalizer, |
||
41 | string $forceType = null |
||
42 | ) { |
||
43 | 3 | $this->name = $name; |
|
44 | 3 | $this->groups = $groups; |
|
45 | 3 | $this->fieldDenormalizer = $fieldDenormalizer; |
|
46 | 3 | $this->forceType = $forceType; |
|
47 | 3 | } |
|
48 | |||
81 |