| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 69 | public static function normalizeReference(string $string): string |
||
| 70 | { |
||
| 71 | @trigger_error(sprintf('%s::normlizeReference() is deprecated; use %s::normalize() instead', self::class, TextNormalizer::class), E_USER_DEPRECATED); |
||
| 72 | |||
| 73 | return (new TextNormalizer())->normalize($string); |
||
| 74 | } |
||
| 75 | } |
||
| 76 |