In a ContainerAwareCommand: ```php /** @var MyEntityRepository $myEntityRepository */ $myEntityRepository = $this->getContainer()->get('doctrine')->getRepository(MyEntity::class); ``` I would expect `getRepository` to have an amended return type as "MyEntityRepository" (if existent).