Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | class UuidGenerator implements UuidGeneratorInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var \Ramsey\Uuid\UuidFactoryInterface |
||
13 | */ |
||
14 | protected $uuidFactory; |
||
15 | |||
16 | /** |
||
17 | * @param \Ramsey\Uuid\UuidFactoryInterface $uuidFactory |
||
18 | */ |
||
19 | public function __construct(UuidFactoryInterface $uuidFactory) |
||
22 | } |
||
23 | |||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function generate(): string |
||
33 |