src/Flexy/Apps/ListingBundle/FlexyListingBundle.php line 9
<?php
// src/Acme/TestBundle/AcmeTestBundle.php
namespace App\Flexy\Apps\ListingBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use App\Flexy\Apps\ListingBundle\DependencyInjection\FlexyListingExtension;
class FlexyListingBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$ext = new FlexyListingExtension([],$container);
}
}