vendor/knplabs/knp-paginator-bundle/src/KnpPaginatorBundle.php line 17

  1. <?php
  2. /**
  3.  * (c) Thibault Duplessis <thibault.duplessis@gmail.com>.
  4.  *
  5.  * This source file is subject to the MIT license that is bundled
  6.  * with this source code in the file LICENSE.
  7.  */
  8. namespace Knp\Bundle\PaginatorBundle;
  9. use Knp\Bundle\PaginatorBundle\DependencyInjection\Compiler\PaginatorAwarePass;
  10. use Symfony\Component\DependencyInjection\Compiler\PassConfig;
  11. use Symfony\Component\DependencyInjection\ContainerBuilder;
  12. use Symfony\Component\HttpKernel\Bundle\Bundle;
  13. final class KnpPaginatorBundle extends Bundle
  14. {
  15.     public function build(ContainerBuilder $container): void
  16.     {
  17.         parent::build($container);
  18.         $container->addCompilerPass(new PaginatorAwarePass(), PassConfig::TYPE_BEFORE_REMOVING);
  19.     }
  20.     public function getPath(): string
  21.     {
  22.         return \dirname(__DIR__);
  23.     }
  24. }