vendor/bluue/api-cms-bundle/src/ApiCmsBundle.php line 18

Open in your IDE?
  1. <?php
  2. /**
  3.  * @author Leo BANNHOLTZER (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\ApiCmsBundle;
  9. use Symfony\Component\HttpKernel\Bundle\Bundle;
  10. use Symfony\Component\DependencyInjection\ContainerBuilder;
  11. use Bluue\ApiCmsBundle\DependencyInjection\ApiCmsExtension;
  12. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  13. class ApiCmsBundle extends Bundle
  14. {
  15.     public function build(ContainerBuilder $container): void
  16.     {
  17.         parent::build($container);
  18.     }
  19.     public function getContainerExtension(): ?ExtensionInterface
  20.     {
  21.         return new ApiCmsExtension();
  22.     }
  23.     /**
  24.      * @return string
  25.      */
  26.     public function getPublicName(): string
  27.     {
  28.         return 'Module API CMS';
  29.     }
  30. }