Skip to content

Commit

Permalink
Update LastNamesInflection.php
Browse files Browse the repository at this point in the history
  • Loading branch information
altapo authored Jan 29, 2020
1 parent 73f92e7 commit 034d8cd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Russian/LastNamesInflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,14 @@ public static function isMutable($name, $gender = null)
if (in_array(S::slice($name, -1), ['а', 'я'], true)) {
return true;
}

// Несклоняемые фамилии независимо от пола (Токаревских)
if (in_array(S::slice($name, -2), ['их'], true))
return false;

if ($gender == static::MALE) {
// Несклоняемые фамилии (Фоминых, Седых / Стецко, Писаренко / Токаревских)
if (in_array(S::slice($name, -2), ['ых', 'ко', 'их'], true))
// Несклоняемые фамилии (Фоминых, Седых / Стецко, Писаренко)
if (in_array(S::slice($name, -2), ['ых', 'ко'], true))
return false;

// Несклоняемые, образованные из родительного падежа личного или прозвищного имени главы семьи
Expand Down

0 comments on commit 034d8cd

Please sign in to comment.