<?php
namespace Roothirsch\NotificationBundle;
use Roothirsch\NotificationBundle\DependencyInjection\RoothirschNotificationExtension;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class NotificationBundle extends Bundle
{
public function getContainerExtension():ExtensionInterface
{
return new RoothirschNotificationExtension();
}
public function getPath(): string
{
return \dirname(__DIR__);
}
}