app/Plugin/MembersOnly42/Bundle/MembersOnlyBundle.php line 19

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of MembersOnly
  4.  *
  5.  * Copyright(c) Akira Kurozumi <info@a-zumi.net>
  6.  *
  7.  * https://a-zumi.net
  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 Plugin\MembersOnly42\Bundle;
  13. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  14. use Symfony\Component\HttpKernel\Bundle\Bundle;
  15. class MembersOnlyBundle extends Bundle
  16. {
  17.     /**
  18.      * @return ExtensionInterface|null
  19.      */
  20.     public function getContainerExtension(): ?ExtensionInterface
  21.     {
  22.         // EC-CUBE4.2.0で動作しないためバンドルでMembersOnlyExtensionを呼び出すのをやめる
  23.         return null;
  24.     }
  25. }