Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | * @author Daniel West <[email protected]> |
||
24 | */ |
||
25 | trait IdTrait |
||
26 | { |
||
27 | /** |
||
28 | * @ORM\Id() |
||
29 | * @ORM\Column(type="string", length=36) |
||
30 | */ |
||
31 | private string $id; |
||
32 | |||
33 | 67 | private function setId(): void |
|
36 | 67 | } |
|
37 | |||
38 | /** |
||
39 | * @ApiProperty(readable=false) |
||
40 | */ |
||
41 | 5 | public function getId(): string |
|
42 | { |
||
46 |