src/Flexy/Apps/TransportBundle/FlexyTransportBundle.php line 9

  1. <?php 
  2. // src/Acme/TestBundle/AcmeTestBundle.php
  3. namespace App\Flexy\Apps\TransportBundle;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. use Symfony\Component\DependencyInjection\ContainerBuilder;
  6. use App\Flexy\Apps\TransportBundle\DependencyInjection\FlexyMyNewExtension;
  7. class FlexyTransportBundle extends Bundle
  8. {
  9.     public function build(ContainerBuilder $container)
  10.     {
  11.         parent::build($container);
  12.         $ext = new FlexyTransportBundle([],$container);
  13.     }
  14.     public function getParent()
  15.     {
  16.         return 'FlexyFrontBundle';
  17.     }
  18. }