<?php
/*
* This file is part of Auth0 for EC-CUBE
*
* 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\Auth0\Bundle;
use Plugin\Auth0\DependencyInjection\Auth0Extension;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class Auth0Bundle extends Bundle
{
/**
* @return ExtensionInterface|null
*/
public function getContainerExtension(): ?ExtensionInterface
{
return new Auth0Extension();
}
}