1 | <?php |
||
9 | class ArticleRepository |
||
10 | { |
||
11 | public function getTopLevel(): Collection |
||
18 | |||
19 | public function getSiblings(Article $article): Collection |
||
26 | |||
27 | public function firstChild(Article $article): Article |
||
34 | |||
35 | /** |
||
36 | * @param \App\Models\Enums\SpecialArticle $specialArticle |
||
37 | * |
||
38 | * @return \App\Models\Article|null |
||
39 | */ |
||
40 | public function findSpecialArticle(SpecialArticle $specialArticle) |
||
44 | } |
||
45 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.