vendor/roothirsch/notification-bundle/src/NotificationBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Roothirsch\NotificationBundle;
  3. use Roothirsch\NotificationBundle\DependencyInjection\RoothirschNotificationExtension;
  4. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class NotificationBundle extends Bundle
  7. {
  8. public function getContainerExtension():ExtensionInterface
  9. {
  10. return new RoothirschNotificationExtension();
  11. }
  12. public function getPath(): string
  13. {
  14. return \dirname(__DIR__);
  15. }
  16. }