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

Поправьте, пожалуйста, аннотации в классах, чтобы избежать ошибок psalm #529

Open
max-petrovich opened this issue Sep 10, 2023 · 0 comments

Comments

@max-petrovich
Copy link

Как воспроизвести проблему:

  1. Создаем объект типа \AmoCRM\Models\NoteType\CommonNote
  2. Выполняем к нему следующие операции:
$commonNote = new CommonNote();
$commonNote
    ->setEntityId($id)
    ->setText($comments)
    ->setCreatedBy(0);

И получаем следующую ошибку psalm:

ERROR: UndefinedMethod - src/Test.php:237:15 - Method AmoCRM\Models\NoteModel::setText does not exist (see https://psalm.dev/022)
            ->setText($comments)

Так как метод setEntityId() возвращает (по аннотации) NoteModel, а в NoteModel нет метода setText()

Проблема заключается в том, что в NoteModel в методе setEntityId сигнатура выглядит "почти корректно" - как минимум, на такую хотя бы psalm не ругается

public function setEntityId(int $entityId): self

А вот аннотация к методу содержит захардкоженный @return NoteModel вместо @return self

    /**
     * @param int $entityId
     * @return NoteModel
     */

Поэтому, большая просьба - поправьте, пожалуйста, аннотации во всех классах (где встречается аналогичная проблема) на корректные.


Вариант обхода данной ошибки:

$commonNote = new CommonNote();
$commonNote->setEntityId(1);
$commonNote->setText('text');
$commonNote->setCreatedBy(0);
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