<?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\OvhSmsBundle;
use Bluue\OvhSmsBundle\DependencyInjection\OvhSmsExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class OvhSmsBundle extends Bundle
{
public const VERSION = '0.0.1';
/**
* @return OvhSmsExtension
*/
public function getContainerExtension(): OvhSmsExtension
{
return new OvhSmsExtension();
}
/**
* @return string
*/
public function getPublicName(): string
{
return 'Module Envoi de SMS par OVH';
}
}