Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | trait ClaimEntityTrait |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $name; |
||
18 | |||
19 | /** |
||
20 | * @var mixed |
||
21 | */ |
||
22 | protected $value; |
||
23 | |||
24 | /** |
||
25 | * Returns the name of the claim |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | 1 | public function getName() |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * Returns the claims value |
||
36 | * |
||
37 | * @return mixed |
||
38 | */ |
||
39 | 1 | public function getValue() |
|
44 |