<?php
/*
* This file is part of MembersOnly
*
* Copyright(c) Akira Kurozumi <info@a-zumi.net>
*
* https://a-zumi.net
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Plugin\MembersOnly42\Bundle;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class MembersOnlyBundle extends Bundle
{
/**
* @return ExtensionInterface|null
*/
public function getContainerExtension(): ?ExtensionInterface
{
// EC-CUBE4.2.0で動作しないためバンドルでMembersOnlyExtensionを呼び出すのをやめる
return null;
}
}