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