Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
Uuid | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
getRegularExpression | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\Core\Identifiers; |
3 | |
4 | use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface; |
5 | use Apie\Core\ValueObjects\IsStringWithRegexValueObject; |
6 | |
7 | class Uuid implements HasRegexValueObjectInterface |
8 | { |
9 | use IsStringWithRegexValueObject; |
10 | |
11 | public static function getRegularExpression(): string |
12 | { |
13 | return '/^[a-f0-9]{8}\-[a-f0-9]{4}\-[a-f0-9]{4}\-[a-f0-9]{4}\-[a-f0-9]{12}$/'; |
14 | } |
15 | } |