<?php
declare(strict_types=1);
namespace Bluue\Cx3Bundle;
use Bluue\Cx3Bundle\DependencyInjection\Cx3Extension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class Cx3Bundle extends Bundle
{
/**
* @return Cx3Extension
*/
public function getContainerExtension(): Cx3Extension
{
return new Cx3Extension();
}
/**
* @return string
*/
public function getPublicName(): string
{
return 'Module 3CX';
}
}