omines / datatables-bundle

DataTables bundle for Symfony
https://omines.github.io/datatables-bundle/
MIT License
262 stars 114 forks source link

Use ManagerRegistry instead of RegistryInterface to fix deprecation. #110

Closed jbtronics closed 4 years ago

jbtronics commented 4 years ago

Since Symfony 4.4 Symfony\Bridge\Doctrine\RegistryInterface is deprecated, and removed in Symfony 5.0 (see issue #108 ).

Since RegistryInterface extends ManagerRegistry, there should be no BC break, even if the user has extended the ORMAdapter and extended the controller.

curry684 commented 4 years ago

Thank you!