Total Complexity | 6 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class OpenIdScopeSupport implements UserInfoScopeSupport |
||
17 | { |
||
18 | public function __toString(): string |
||
19 | { |
||
20 | return $this->getName(); |
||
21 | } |
||
22 | |||
23 | public function getName(): string |
||
24 | { |
||
25 | return 'openid'; |
||
26 | } |
||
27 | |||
28 | public function getParent(): ?string |
||
29 | { |
||
30 | return null; |
||
31 | } |
||
32 | |||
33 | public function isParentMandatory(): bool |
||
34 | { |
||
35 | return false; |
||
36 | } |
||
37 | |||
38 | public function getAssociatedClaims(): array |
||
42 | ]; |
||
43 | } |
||
44 | |||
45 | public function jsonSerialize(): string |
||
48 | } |
||
49 | } |
||
50 |