vendor/pagerfanta/pagerfanta/src/Adapter/DoctrineORMAdapter.php line 7

Open in your IDE?
  1. <?php
  2. namespace Pagerfanta\Adapter;
  3. use Pagerfanta\Doctrine\ORM\QueryAdapter;
  4. trigger_deprecation('pagerfanta/pagerfanta''2.4''The "%s" class is deprecated and will be removed in 3.0. Use the "%s" class from the "pagerfanta/doctrine-orm-adapter" package instead.'DoctrineORMAdapter::class, QueryAdapter::class);
  5. /**
  6.  * Adapter which calculates pagination from a Doctrine ORM Query or QueryBuilder.
  7.  *
  8.  * @template T
  9.  * @extends QueryAdapter<T>
  10.  *
  11.  * @deprecated to be removed in 3.0, use the `Pagerfanta\Doctrine\ORM\QueryAdapter` from the `pagerfanta/doctrine-orm-adapter` package instead
  12.  */
  13. class DoctrineORMAdapter extends QueryAdapter
  14. {
  15. }