You've already forked symfony-notifications
first
This commit is contained in:
25
TestBundle/TestBundle.php
Normal file
25
TestBundle/TestBundle.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace Bluesquare\TestBundle;
|
||||
|
||||
use Bluesquare\TestBundle\Entity\BillingInvoice;
|
||||
use Bluesquare\TestBundle\Repository\BillingInvoiceRepository;
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
use Bluesquare\TestBundle\DependencyInjection\TestExtension;
|
||||
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
||||
|
||||
class TestBundle extends Bundle
|
||||
{
|
||||
public function build(ContainerBuilder $container)
|
||||
{
|
||||
parent::build($container);
|
||||
}
|
||||
|
||||
public function getContainerExtension()
|
||||
{
|
||||
if (null === $this->extension)
|
||||
$this->extension = new TestExtension();
|
||||
|
||||
return $this->extension;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user