With the following code: ```php private EntityManagerInterface $entityManager; ``` Auto-completion for methods of `$this->entityManager` does not work The following works fine: ```php /** * @var EntityManagerInterface */ private $entityManager; ``` Code used for testing ```php class X { private EntityManagerInterface $entityManager; public function myMethod(): void { $this->entityManager-> # auto-completion fails here } } ```