Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | trait IdGeneratorUserTrait |
||
11 | { |
||
12 | protected ?IIdGenerator $idGenerator = null; |
||
13 | |||
14 | /** |
||
15 | * @param IIdGenerator $idGenerator |
||
16 | */ |
||
17 | public function setIdGenerator(IIdGenerator $idGenerator) |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @return IIdGenerator |
||
24 | */ |
||
25 | protected function getIdGenerator(): IIdGenerator |
||
34 |