src/Eccube/Service/Composer/ComposerServiceFactory.php line 24

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\Service\Composer;
  13. use Eccube\Entity\BaseInfo;
  14. use Eccube\Repository\BaseInfoRepository;
  15. use Symfony\Component\DependencyInjection\ContainerInterface;
  16. class ComposerServiceFactory
  17. {
  18.     public static function createService(ContainerInterface $container)
  19.     {
  20.         return $container->get(ComposerApiService::class);
  21.     }
  22. }