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