vendor/bluue/ovh-sms-bundle/src/OvhSmsBundle.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\OvhSmsBundle;
  9. use Bluue\OvhSmsBundle\DependencyInjection\OvhSmsExtension;
  10. use Symfony\Component\HttpKernel\Bundle\Bundle;
  11. class OvhSmsBundle extends Bundle
  12. {
  13.     public const VERSION '0.0.1';
  14.     /**
  15.      * @return OvhSmsExtension
  16.      */
  17.     public function getContainerExtension(): OvhSmsExtension
  18.     {
  19.         return new OvhSmsExtension();
  20.     }
  21.     /**
  22.      * @return string
  23.      */
  24.     public function getPublicName(): string
  25.     {
  26.         return 'Module Envoi de SMS par OVH';
  27.     }
  28. }