1 | <?php |
||
15 | trait IdAttributeTrait |
||
16 | { |
||
17 | /** |
||
18 | * @var string|null |
||
19 | */ |
||
20 | protected $id; |
||
21 | |||
22 | /** |
||
23 | * @return string |
||
24 | * @throws \Exception |
||
25 | */ |
||
26 | public function getId(): string |
||
33 | |||
34 | /** |
||
35 | * @return string|null |
||
36 | */ |
||
37 | public function findId() |
||
41 | |||
42 | /** |
||
43 | * @param string|null $id |
||
44 | * @return $this |
||
45 | */ |
||
46 | public function setId(string $id = null) |
||
51 | } |
||
52 |