I am not sure if this is a problem with phpstan itself, or this repo. This throws no error: ``` /** @return Users[] **/ public function findCustom(string $type, string): array { return $this->getEntityManager()->createQueryBuilder() ->select("user") ->from(Users::class, "user") ->where("user.type = :type") ->setParameter("type", $type) ->getQuery() ->getResult(); } ``` This throws `findCustom() should return array<App\Entity\Users> but returns mixed.` ``` /** @return Users[] **/ public function findCustom(string $type, string, $indexBy = "user.uid"): array { return $this->getEntityManager()->createQueryBuilder() ->select("user") ->from(Users::class, "user", $indexBy) ->where("user.type = :type") ->setParameter("type", $type) ->getQuery() ->getResult(); } ```