| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 1 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 33 | public function __construct( |
||
| 34 | string $name, |
||
| 35 | array $groups, |
||
| 36 | LinkNormalizerInterface $linkNormalizer, |
||
| 37 | PolicyInterface $policy = null |
||
| 38 | ) { |
||
| 39 | 4 | $this->name = $name; |
|
| 40 | $this->groups = $groups; |
||
| 41 | $this->linkNormalizer = $linkNormalizer; |
||
| 42 | $this->policy = $policy ?? new NullPolicy(); |
||
| 43 | } |
||
| 70 |