Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | abstract class AbstractUuidIdentityGenerator implements IdentityGenerator |
||
25 | { |
||
26 | /** |
||
27 | * @var UuidFactoryInterface |
||
28 | */ |
||
29 | private $uuidFactory; |
||
30 | |||
31 | /** |
||
32 | * Get UUID string. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | protected function getUuidString(): string |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * Get UUID generator. |
||
43 | * |
||
44 | * @return UuidFactoryInterface |
||
45 | */ |
||
46 | private function getUuidGenerator(): UuidFactoryInterface |
||
59 |