Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Неправильно склоняются фамилии, заканчивающиеся на "ой" #15

Open
GrayWolfy opened this issue Apr 9, 2021 · 0 comments

Comments

@GrayWolfy
Copy link

GrayWolfy commented Apr 9, 2021

Заметил на мужских.
Например: Мостовской, Донской.

Проблема, мне кажется, в этом куске в последнем elif'e (!$this->in($this->Last(2, 1), $this->vowels)). Должно быть, наверное, не отрицание. С другой стороны я не знаю почему такое условие. Какой был у вас случай.
Но дело в том, что иначе лезет в else и во всех падежах пишется одинаково.

     * Мужские фамилии, оканчивающиеся на -ь -й, склоняются так же,
     * как обычные существительные мужского рода
     * @return bool true если правило было задействовано и false если нет.
     */
    protected function manRule4()
    {
        if ($this->in($this->Last(1), 'ьй')) {

//Слова типа Воробей
            if ($this->Last(3) == 'бей') {
                $this->wordForms($this->workingWord, array('ья', 'ью', 'ья', 'ьем', 'ье'), 2);
                $this->Rule(400);
                return true;
            } elseif ($this->Last(3, 1) == 'а' or $this->in($this->Last(2, 1), 'ел')) {
                $this->wordForms($this->workingWord, array('я', 'ю', 'я', 'ем', 'е'), 1);
                $this->Rule(401);
                return true;
            } //Толстой -» ТолстЫм
            elseif ($this->Last(2, 1) == 'ы' or $this->Last(3, 1) == 'т') {
                $this->wordForms($this->workingWord, array('ого', 'ому', 'ого', 'ым', 'ом'), 2);
                $this->Rule(402);
                return true;
            } //Лесничий
            elseif ($this->Last(3) == 'чий') {
                $this->wordForms($this->workingWord, array('ьего', 'ьему', 'ьего', 'ьим', 'ьем'), 2);
                $this->Rule(403);
                return true;
            } elseif (!$this->in($this->Last(2, 1), $this->vowels) or $this->Last(2, 1) == 'и') {
                var_dump("YEAH");die;
                $this->wordForms($this->workingWord, array('ого', 'ому', 'ого', 'им', 'ом'), 2);
                $this->Rule(404);
                return true;
            } else {
                $this->makeResultTheSame();
                $this->Rule(405);
                return true;
            }
        }
        return false;
    }```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant