Starting with version 1.3.0 of `phpstan/phpstan-symfony`, the following code is not valid anymore. ``` // src/Controller/DefaultController.php use Symfony\Component\Form\Form; use Symfony\Component\Form\FormInterface; ... /** @var Form&FormInterface $form */ $form = $this->createForm(...); ``` Until version 1.2.25, no problems were reported here, but now I get the following error: ``` PHPDoc tag @var with type Symfony\Component\Form\Form is not subtype of native type Symfony\Component\Form\FormInterface. ```