vendor/bluue/labels-bundle/src/LabelsBundle.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\LabelsBundle;
  9. use Bluue\LabelsBundle\DependencyInjection\LabelsExtension;
  10. use Symfony\Component\HttpKernel\Bundle\Bundle;
  11. class LabelsBundle extends Bundle
  12. {
  13.     /**
  14.      * @return LabelsExtension
  15.      */
  16.     public function getContainerExtension(): LabelsExtension
  17.     {
  18.         return new LabelsExtension();
  19.     }
  20.     /**
  21.      * @return string
  22.      */
  23.     public function getPublicName(): string
  24.     {
  25.         return 'Module Ã‰tiquette produit';
  26.     }
  27. }