src/Flexy/Apps/CJDropShippingBundle/FlexyCJDropShippingBundle.php line 9

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