Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
85.71% |
6 / 7 |
|
66.67% |
2 / 3 |
CRAP | |
0.00% |
0 / 1 |
UrlRouteDefinition | |
85.71% |
6 / 7 |
|
66.67% |
2 / 3 |
5.07 | |
0.00% |
0 / 1 |
convert | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
2 | |||
withBaseUrl | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getPlaceholders | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
2 |
1 | <?php |
2 | namespace Apie\Core\ValueObjects; |
3 | |
4 | use Apie\Core\ValueObjects\Interfaces\StringValueObjectInterface; |
5 | |
6 | class UrlRouteDefinition implements StringValueObjectInterface |
7 | { |
8 | use IsStringValueObject; |
9 | |
10 | protected function convert(string $input): string |
11 | { |
12 | if (substr($input, 0, 1) !== '/') { |
13 | return '/' . $input; |
14 | } |
15 | return $input; |
16 | } |
17 | |
18 | public function withBaseUrl(string $baseUrl): self |
19 | { |
20 | return new self(rtrim($baseUrl, '/') . $this->internal); |
21 | } |
22 | |
23 | /** |
24 | * @return array<int, string> |
25 | */ |
26 | public function getPlaceholders(): array |
27 | { |
28 | if (preg_match_all('/\{\s*(?<placeholder>[a-zA-Z0-9_]+)\s*\}/', $this->internal, $matches)) { |
29 | return $matches['placeholder']; |
30 | } |
31 | return []; |
32 | } |
33 | } |