vendor/bluue/cx3-bundle/src/Cx3Bundle.php line 10

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Bluue\Cx3Bundle;
  4. use Bluue\Cx3Bundle\DependencyInjection\Cx3Extension;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class Cx3Bundle extends Bundle
  7. {
  8.     /**
  9.      * @return Cx3Extension
  10.      */
  11.     public function getContainerExtension(): Cx3Extension
  12.     {
  13.         return new Cx3Extension();
  14.     }
  15.     /**
  16.      * @return string
  17.      */
  18.     public function getPublicName(): string
  19.     {
  20.         return 'Module 3CX';
  21.     }
  22. }