src/Eccube/Doctrine/Query/Queries.php line 36

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Eccube\Doctrine\Query;
  13. use Doctrine\ORM\QueryBuilder;
  14. class Queries
  15. {
  16.     /**
  17.      * @var QueryCustomizer[]
  18.      */
  19.     private $customizers = [];
  20.     public function addCustomizer(QueryCustomizer $customizer)
  21.     {
  22.         $queryKey $customizer->getQueryKey();
  23.         $this->customizers[$queryKey][] = $customizer;
  24.     }
  25.     public function customize($queryKeyQueryBuilder $builder$params)
  26.     {
  27.         if (isset($this->customizers[$queryKey])) {
  28.             /* @var QueryCustomizer $customizer */
  29.             foreach ($this->customizers[$queryKey] as $customizer) {
  30.                 $customizer->customize($builder$params$queryKey);
  31.             }
  32.         }
  33.         return $builder;
  34.     }
  35. }