Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | class Wildcard |
||
10 | { |
||
11 | |||
12 | private const REGEX_WILDCARD = '/{[^}]*}/'; |
||
13 | private const REGEX_ANY_CHAR = '(.*)'; |
||
14 | private const REGEX_DELIMITER = '/'; |
||
15 | |||
16 | /** |
||
17 | * @param string $wildcardText |
||
18 | * @param string $text |
||
19 | * @return bool |
||
20 | */ |
||
21 | 6 | public static function matches(string $wildcardText, string $text) : bool |
|
35 | } |
||
36 | } |