vendor/nexcrm/nexcrm-notification-bundle/src/NotificationBundle.php line 10

Open in your IDE?
  1. <?php
  2. namespace NexCRM\NotificationBundle;
  3. use NexCRM\NotificationBundle\DependencyInjection\NotificationExtension;
  4. use NexCRM\NotificationBundle\Entity\Notification;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. use Symfony\Component\DependencyInjection\ContainerBuilder;
  7. class NotificationBundle extends Bundle
  8. {
  9.     public function getContainerExtension()
  10.     {
  11.         return new NotificationExtension();
  12.     }
  13. }