16 lines
233 B
PHP
16 lines
233 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Mummert\EventManagerBundle;
|
|
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
|
|
class EventManagerBundle extends Bundle
|
|
{
|
|
public function getPath(): string
|
|
{
|
|
return dirname(__DIR__);
|
|
}
|
|
}
|