vendor/bluue/forecasted-manufacturing-bundle/src/ForecastedManufacturingBundle.php line 16

Open in your IDE?
  1. <?php
  2. /**
  3.  * @author Quentin CHATELAIN (contact@scaledev.fr)
  4.  * @copyright 2021 - ScaleDEV SAS, 12 RUE CHARLES MORET, 10120 ST ANDRE LES VERGERS
  5.  * @license commercial
  6.  */
  7. declare(strict_types=1);
  8. namespace Bluue\ForecastedManufacturingBundle;
  9. use Bluue\ForecastedManufacturingBundle\DependencyInjection\ForecastedManufacturingExtension;
  10. use Symfony\Component\HttpKernel\Bundle\Bundle;
  11. class ForecastedManufacturingBundle extends Bundle
  12. {
  13.     public const VERSION '0.0.1';
  14.     /**
  15.      * @return ForecastedManufacturingExtension
  16.      */
  17.     public function getContainerExtension(): ForecastedManufacturingExtension
  18.     {
  19.         return new ForecastedManufacturingExtension();
  20.     }
  21.     /**
  22.      * @return string
  23.      */
  24.     public function getPublicName(): string
  25.     {
  26.         return 'Module Fabrication PrĂ©visionnelle';
  27.     }
  28. }