vendor/bluue/customer-outstanding-bundle/src/CustomerOutstandingBundle.php line 16

Open in your IDE?
  1. <?php
  2. /**
  3.  * @author Léo 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\CustomerOutstandingBundle;
  9. use Bluue\CustomerOutstandingBundle\DependencyInjection\CustomerOutstandingExtension;
  10. use Symfony\Component\HttpKernel\Bundle\Bundle;
  11. class CustomerOutstandingBundle extends Bundle
  12. {
  13.     /**
  14.      * @return CustomerOutstandingExtension
  15.      */
  16.     public function getContainerExtension(): CustomerOutstandingExtension
  17.     {
  18.         return new CustomerOutstandingExtension();
  19.     }
  20. }