<?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\ForecastedStockBundle;
use Bluue\ForecastedStockBundle\DependencyInjection\ForecastedStockExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class ForecastedStockBundle extends Bundle
{
/**
* @return ForecastedStockExtension
*/
public function getContainerExtension(): ForecastedStockExtension
{
return new ForecastedStockExtension();
}
/**
* @return string
*/
public function getPublicName(): string
{
return 'Module Stock Prévisionnel';
}
}