src/Eccube/Repository/Master/ProductListOrderByRepository.php line 30

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\Repository\Master;
  13. use Doctrine\Persistence\ManagerRegistry as RegistryInterface;
  14. use Eccube\Entity\Master\ProductListOrderBy;
  15. use Eccube\Repository\AbstractRepository;
  16. /**
  17.  * ProductListOrderByRepository
  18.  *
  19.  * This class was generated by the Doctrine ORM. Add your own custom
  20.  * repository methods below.
  21.  */
  22. class ProductListOrderByRepository extends AbstractRepository
  23. {
  24.     public function __construct(RegistryInterface $registry)
  25.     {
  26.         parent::__construct($registryProductListOrderBy::class);
  27.     }
  28. }