<?php
/**
* @author Léo BANNHOLTZER (contact@scaledev.fr)
* @copyright 2021 - ScaleDEV SAS, 12 RUE CHARLES MORET, 10120 ST ANDRE LES VERGERS
* @license commercial
*/
declare(strict_types=1);
namespace Bluue\ShopModulesBundle;
use Bluue\ShopModulesBundle\DependencyInjection\ShopModulesExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class ShopModulesBundle extends Bundle
{
/**
* @return ShopModulesExtension
*/
public function getContainerExtension(): ShopModulesExtension
{
return new ShopModulesExtension();
}
/**
* @return string
*/
public function getPublicName(): string
{
return 'Module Gestion des modules de boutique';
}
}