| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | public function __construct( |
||
| 37 | $name, |
||
| 38 | array $groups, |
||
| 39 | 4 | FieldNormalizerInterface $fieldNormalizer, |
|
| 40 | PolicyInterface $policy = null |
||
| 41 | ) { |
||
| 42 | $this->name = $name; |
||
| 43 | $this->groups = $groups; |
||
| 44 | $this->fieldNormalizer = $fieldNormalizer; |
||
| 45 | 4 | $this->policy = $policy ?? new NullPolicy(); |
|
| 46 | 4 | } |
|
| 73 |