Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class ClaimSetEntry implements ClaimSetEntryInterface |
||
15 | { |
||
16 | /** |
||
17 | * Summary of __construct |
||
18 | * |
||
19 | * @param string $scope Scope of the claimset |
||
20 | * @param string[] $claims The claims |
||
21 | */ |
||
22 | public function __construct( |
||
23 | protected string $scope, |
||
24 | protected array $claims |
||
25 | ) { |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Get scope |
||
30 | */ |
||
31 | public function getScope(): string |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Get claims |
||
38 | * |
||
39 | * @return string[] |
||
40 | */ |
||
41 | public function getClaims(): array |
||
46 |