Parent here seems not to correctly work as $this->. ```php class AffiliateCodeRepository extends Repository { /** * @return ICollection<AffiliateCode> */ public function findActive(): ICollection { return parent::findBy(['active' => true]); } } ```