Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wapmorgan committed Nov 17, 2017
1 parent 7029b01 commit 9802c17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Russian/RussianLanguage.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,16 +234,16 @@ public static function about($word)
/**
* Выбирает первое или второе окончание в зависимости от звонкости/глухости в конце слова.
* @param string $word Слово (или префикс), на основе звонкости которого нужно выбрать окончание
* @param string $ifSononous Окончание, если слово оканчивается на звонкую согласную
* @param string $ifSonorous Окончание, если слово оканчивается на звонкую согласную
* @param string $ifDeaf Окончание, если слово оканчивается на глухую согласную
* @return string Первое или второе окончание
* @throws \Exception
*/
public static function chooseEndingBySonority($word, $ifSononous, $ifDeaf)
public static function chooseEndingBySonority($word, $ifSonorous, $ifDeaf)
{
$last = S::slice($word, -1);
if (self::isSonorousConsonant($last))
return $ifSononous;
return $ifSonorous;
if (self::isDeafConsonant($last))
return $ifDeaf;

Expand Down

0 comments on commit 9802c17

Please sign in to comment.