Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
IsStringWithRegexValueObject
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
1 / 1
 validate
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
2
 getRegularExpression
n/a
0 / 0
n/a
0 / 0
0
1<?php
2namespace Apie\Core\ValueObjects;
3
4use Apie\Core\Attributes\CmsValidationCheck;
5use Apie\Core\ValueObjects\Exceptions\InvalidStringForValueObjectException;
6use ReflectionClass;
7
8#[CmsValidationCheck(patternMethod: 'getRegularExpression')]
9trait IsStringWithRegexValueObject
10{
11    use IsStringValueObject;
12    public static function validate(string $input): void
13    {
14        if (!preg_match(static::getRegularExpression(), $input)) {
15            throw new InvalidStringForValueObjectException($input, new ReflectionClass(self::class));
16        }
17    }
18
19    abstract public static function getRegularExpression(): string;
20}