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