Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
3 / 3 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
Ulid | |
100.00% |
3 / 3 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
getRegularExpression | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
createRandom | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\Core\Identifiers; |
3 | |
4 | use Apie\Core\Attributes\FakeMethod; |
5 | use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface; |
6 | use Apie\Core\ValueObjects\IsStringWithRegexValueObject; |
7 | use Symfony\Component\Uid\Ulid as SymfonyUlid; |
8 | |
9 | #[FakeMethod('createRandom')] |
10 | class Ulid implements HasRegexValueObjectInterface |
11 | { |
12 | use IsStringWithRegexValueObject; |
13 | |
14 | public static function getRegularExpression(): string |
15 | { |
16 | // TODO stricter base58 |
17 | return '/^[a-zA-Z0-9]{22}$/i'; |
18 | } |
19 | |
20 | public static function createRandom(): static |
21 | { |
22 | $ulid = new SymfonyUlid(); |
23 | return static::fromNative($ulid->toBase58()); |
24 | } |
25 | } |