Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | trait EntityTrait |
||
16 | { |
||
17 | /** |
||
18 | * @var non-empty-string |
||
|
|||
19 | */ |
||
20 | protected string $identifier; |
||
21 | |||
22 | /** |
||
23 | * @return non-empty-string |
||
24 | */ |
||
25 | 62 | public function getIdentifier(): string |
|
28 | } |
||
29 | |||
30 | /** |
||
31 | * @param non-empty-string $identifier |
||
32 | */ |
||
33 | 78 | public function setIdentifier(string $identifier): void |
|
38 |