Total Complexity | 8 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | class IdentifierHelper |
||
15 | { |
||
16 | /** |
||
17 | * transforms text to human readable URL |
||
18 | * only outputs lowercase alphanummeric string, invalid characters are replaced by -. |
||
19 | * |
||
20 | * min length 10, max length 100 |
||
21 | */ |
||
22 | public static function getHumanReadableIdentifier(string $text): string |
||
50 |