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