src/IlaveU/Apps/POSBundle/IlaveUPOSBundle.php line 9

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