Symfony Version: 4.1
I have the following deprecation message when I run my tests with PHPUnit:
The annotation "Sensio \ Bundle \ FrameworkExtraBundle \ Configuration \ Route" is deprecated since version 5.2. Use "Symfony \ Component \ Routing \ Annotation \ Route" instead.
I want to clarify that I put in my framework.yaml:
sensio_framework_extra:
router:
annotations: false
I also want to clarify that I have no use Sensio \ Bundle \ FrameworkExtraBundle \ Configuration \ Route
in my controllers.
I use FOSRestBundle
and I get the impression that the problem comes from there, but I tried to fix the configuration provided in the FOSREST documentation.
Have you had this type of error and / or do you know where I should look?