Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
StrictMimeType | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
getRegularExpression | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
createRandom | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\Core\ValueObjects; |
3 | |
4 | use Apie\Core\Attributes\FakeMethod; |
5 | use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface; |
6 | use Faker\Generator; |
7 | |
8 | #[FakeMethod('createRandom')] |
9 | final class StrictMimeType implements HasRegexValueObjectInterface |
10 | { |
11 | use IsStringWithRegexValueObject; |
12 | |
13 | public static function getRegularExpression(): string |
14 | { |
15 | return '~^[a-zA-Z0-9!#$&^_.+-]+/[a-zA-Z0-9!#$&^_.+-]+$~'; |
16 | } |
17 | |
18 | public static function createRandom(Generator $faker): static |
19 | { |
20 | return new static($faker->mimeType()); |
21 | } |
22 | } |