<?php
/**
* @author Quentin CHATELAIN (contact@scaledev.fr)
* @copyright 2021 - ScaleDEV SAS, 12 RUE CHARLES MORET, 10120 ST ANDRE LES VERGERS
* @license commercial
*/
declare(strict_types=1);
namespace Bluue\LabelsBundle;
use Bluue\LabelsBundle\DependencyInjection\LabelsExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class LabelsBundle extends Bundle
{
/**
* @return LabelsExtension
*/
public function getContainerExtension(): LabelsExtension
{
return new LabelsExtension();
}
/**
* @return string
*/
public function getPublicName(): string
{
return 'Module Étiquette produit';
}
}