app/Plugin/DeliveryDate4/Repository/ConfigRepository.php line 22

Open in your IDE?
  1. <?php
  2. /*
  3. * Plugin Name : DeliveryDate4
  4. *
  5. * Copyright (C) BraTech Co., Ltd. All Rights Reserved.
  6. * http://www.bratech.co.jp/
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. namespace Plugin\DeliveryDate4\Repository;
  12. use Eccube\Repository\AbstractRepository;
  13. use Plugin\DeliveryDate4\Entity\DeliveryDateConfig;
  14. use Symfony\Bridge\Doctrine\RegistryInterface;
  15. class ConfigRepository extends AbstractRepository
  16. {
  17.     public function __construct(RegistryInterface $registrystring $entityClass DeliveryDateConfig::class)
  18.     {
  19.         parent::__construct($registry$entityClass);
  20.     }
  21. }