Passed
Push — master ( 75052b...8ecf83 )
by Dmitri
01:50
created

UuidIdGenerator::authorId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\RamseyUuid;
6
7
use App\Domain\Model\AuthorId;
8
use App\Domain\Model\BookId;
9
use App\Domain\Model\IdGenerator;
10
use Ramsey\Uuid\Uuid;
11
12
final class UuidIdGenerator implements IdGenerator
13
{
14
    public function bookId(): BookId
15
    {
16
        return BookId::fromString(Uuid::uuid4()->toString());
17
    }
18
19
    public function authorId(): AuthorId
20
    {
21
        return AuthorId::fromString(Uuid::uuid4()->toString());
22
    }
23
}
24