<?php
/**
* @author Thomas HERISSON (contact@scaledev.fr)
* @copyright 2021 - ScaleDEV SAS, 12 RUE CHARLES MORET, 10120 ST ANDRE LES VERGERS
* @license commercial
*/
declare(strict_types=1);
namespace Bluue\ShipmentsBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Bluue\ShipmentsBundle\DependencyInjection\ShipmentsExtension;
class ShipmentsBundle extends Bundle
{
public function build(ContainerBuilder $container): void
{
parent::build($container);
}
public function getContainerExtension(): ?ExtensionInterface
{
return new ShipmentsExtension();
}
/**
* @return string
*/
public function getPublicName(): string
{
return 'Module Gestion des Expéditions';
}
}