<?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\ShipmentsPictureBundle;
use Bluue\ShipmentsPictureBundle\DependencyInjection\ShipmentsPictureExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class ShipmentsPictureBundle extends Bundle
{
/**
* @return ShipmentsPictureExtension
*/
public function getContainerExtension(): ShipmentsPictureExtension
{
return new ShipmentsPictureExtension();
}
/**
* @return string
*/
public function getPublicName(): string
{
return 'Module Expéditions Photo';
}
}