Total Complexity | 3 |
Total Lines | 27 |
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 | |||
21 | /** |
||
22 | * Get scope |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getScope(): string |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Get claims |
||
33 | * |
||
34 | * @return ClaimSetInterface[] |
||
35 | */ |
||
36 | public function getClaims(): array |
||
41 |