src/IlaveU/Apps/SubscriptionProductBundle/IlaveUSubscriptionProductBundle.php line 9

  1. <?php 
  2. // src/Acme/TestBundle/AcmeTestBundle.php
  3. namespace App\IlaveU\Apps\SubscriptionProductBundle;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. use Symfony\Component\DependencyInjection\ContainerBuilder;
  6. use App\IlaveU\Apps\SubscriptionProductBundle\DependencyInjection\IlaveUSubscriptionProductExtension;
  7. class IlaveUSubscriptionProductBundle extends Bundle
  8. {
  9.     public function build(ContainerBuilder $container)
  10.     {
  11.         parent::build($container);
  12.         $ext = new IlaveUSubscriptionProductExtension([],$container);
  13.     }
  14. }