Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class ClaimSetEntry implements ClaimSetEntryInterface |
||
13 | { |
||
14 | public function __construct( |
||
15 | protected string $scope, |
||
16 | protected array $claims) |
||
17 | {} |
||
18 | |||
19 | /** |
||
20 | * Get scope |
||
21 | * |
||
22 | * @return string |
||
23 | */ |
||
24 | public function getScope(): string |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Get claims |
||
31 | * |
||
32 | * @return ClaimSetInterface[] |
||
33 | */ |
||
34 | public function getClaims(): array |
||
39 |