<?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\SuppliersOrdersBundle;
use Bluue\SuppliersOrdersBundle\DependencyInjection\SuppliersOrdersExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
class SuppliersOrdersBundle extends Bundle
{
public function build(ContainerBuilder $container): void
{
parent::build($container);
}
public function getContainerExtension(): ?ExtensionInterface
{
return new SuppliersOrdersExtension();
}
/**
* @return string
*/
public function getPublicName(): string
{
return 'Module Commande Fournisseur';
}
}