Bug Finder methods return hints are too wide

There is a bug in this version
K

Kirby

Guest
A bunch of finder methods hint
PHP:

@return Finder

This breaks type hinting for code like
PHP:

Code:
$anAdmin = \XF::finder(UserFinder::class)
    ->where('is_admin', 1)
    ->fetchOne();
=> $anAdmin should be \XF\Entity\User but is reported as \XF\Mvc\Entity\Entity

Chould this be changed to @return static?

Continue reading...