ARTICLE AD BOX
I've recently started using PHP Intelephense (absolutely love it), but one issue that persists. I code within the PHP Symfony framework and will get a red like so:

"findExistingCartOrder()" is a function within my repository, but it seems Intelephense cannot detect it. Is there a way to get this fixed? I'm trying to avoid adding comments because I don't want to start adding them all over the place when I absolutely do not need to.
At the top of my repository, I have the following (which is auto generated when creating through the make bundle):
/** * @extends ServiceEntityRepository<SubscriptionOrder> * * @method SubscriptionOrder|null find($id, $lockMode = null, $lockVersion = null) * @method SubscriptionOrder|null findOneBy(array $criteria, array $orderBy = null) * @method SubscriptionOrder[] findAll() * @method SubscriptionOrder[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class SubscriptionOrderRepository extends ServiceEntityRepositoryWhat's the approach here to have PHP Intelephense index this probably? I'm using VSCode.
