| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class StringHelper implements StringHelperInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Normalizes a string for search purposes |
||
| 14 | * |
||
| 15 | * In order to allow searches on utf8 content, transform |
||
| 16 | * all strings to ascii and replace special characters like |
||
| 17 | * å,ü,... by their ascii pendants a,u,... |
||
| 18 | */ |
||
| 19 | public function filterForSearch(string $value): string |
||
| 28 |