You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my project in Symfony 6, I have had this deprecation for some time:
The "FOS\ElasticaBundle\Message\Handler\AsyncPersistPageHandler" class implements "Symfony\Component\Messenger\Handler\MessageHandlerInterface" that is deprecated since Symfony 6.2, use the {@see AsMessageHandler} attribute instead.
The text was updated successfully, but these errors were encountered:
Yes the deprecation comes from the bundle, you simply have to replace the line in class AsyncPersistPageHandler: class AsyncPersistPageHandler implements MessageHandlerInterface
by:
In my project in Symfony 6, I have had this deprecation for some time:
The text was updated successfully, but these errors were encountered: