| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 8 | class ClaimSetEntity implements ClaimSetEntityInterface |
||
| 9 | { |
||
| 10 | protected $scope; |
||
| 11 | |||
| 12 | protected $claims; |
||
| 13 | |||
| 14 | 10 | public function __construct($scope, array $claims) |
|
| 18 | 10 | } |
|
| 19 | |||
| 20 | 10 | public function getScope() |
|
| 21 | { |
||
| 22 | 10 | return $this->scope; |
|
| 23 | } |
||
| 24 | |||
| 25 | 3 | public function getClaims() |
|
| 28 | } |
||
| 29 | } |
||
| 30 |