Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function isParentMandatory(): bool |
||
38 | { |
||
39 | return true; |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function __toString(): string |
||
46 | { |
||
47 | return $this->name(); |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function getAssociatedClaims(): array |
||
54 | { |
||
55 | return [ |
||
56 | 'name', |
||
81 |