Commit 09e6a13e by Alexander Makarov

Fixed tests

parent c306296c
...@@ -469,7 +469,7 @@ class BaseInflector ...@@ -469,7 +469,7 @@ class BaseInflector
if (extension_loaded('intl') === true) { if (extension_loaded('intl') === true) {
$options = 'Any-Latin; NFKD; [:Punctuation:] Remove; [^\u0000-\u007E] Remove'; $options = 'Any-Latin; NFKD; [:Punctuation:] Remove; [^\u0000-\u007E] Remove';
$string = transliterator_transliterate($options, $string); $string = transliterator_transliterate($options, $string);
$string = preg_replace('/[=-\s]+/', $replacement, $string); $string = preg_replace('/[-=\s]+/', $replacement, $string);
} else { } else {
$string = str_replace(array_keys(static::$transliteration), static::$transliteration, $string); $string = str_replace(array_keys(static::$transliteration), static::$transliteration, $string);
$string = preg_replace('/[^\p{L}\p{Nd}]+/u', $replacement, $string); $string = preg_replace('/[^\p{L}\p{Nd}]+/u', $replacement, $string);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment