Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
3 / 3 |
|
100.00% |
3 / 3 |
CRAP | |
100.00% |
1 / 1 |
ApplicationVersion | |
100.00% |
3 / 3 |
|
100.00% |
3 / 3 |
3 | |
100.00% |
1 / 1 |
convert | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getRegularExpression | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
toSemanticVersion | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\CommonValueObjects; |
3 | |
4 | use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface; |
5 | use Apie\Core\ValueObjects\IsStringWithRegexValueObject; |
6 | |
7 | class ApplicationVersion implements HasRegexValueObjectInterface |
8 | { |
9 | use IsStringWithRegexValueObject; |
10 | |
11 | protected function convert(string $input): string |
12 | { |
13 | return trim($input); |
14 | } |
15 | |
16 | public static function getRegularExpression(): string |
17 | { |
18 | return '/^[1-9]*[0-9]\.[1-9]*[0-9]\.[1-9]*[0-9]$/'; |
19 | } |
20 | |
21 | public function toSemanticVersion(): SemanticVersion |
22 | { |
23 | return new SemanticVersion($this->internal); |
24 | } |
25 | } |