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