nextras / orm-phpstan

PHPStan extension for Nextras Orm
https://nextras.org/orm
MIT License
11 stars 6 forks source link

parent in Repository #21

Open hrach opened 3 years ago

hrach commented 3 years ago

Parent here seems not to correctly work as $this->.

class AffiliateCodeRepository extends Repository
{
    /**
     * @return ICollection<AffiliateCode>
     */
    public function findActive(): ICollection
    {
        return parent::findBy(['active' => true]);
    }
}