<?php
/**
* @author Léo BANNHOLTZER (contact@scaledev.fr)
* @copyright 2021 - ScaleDEV SAS, 12 RUE CHARLES MORET, 10120 ST ANDRE LES VERGERS
* @license commercial
*/
declare(strict_types=1);
namespace Bluue\CustomerOutstandingBundle;
use Bluue\CustomerOutstandingBundle\DependencyInjection\CustomerOutstandingExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class CustomerOutstandingBundle extends Bundle
{
/**
* @return CustomerOutstandingExtension
*/
public function getContainerExtension(): CustomerOutstandingExtension
{
return new CustomerOutstandingExtension();
}
}