<?php
namespace MLDev\CatalogBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use MLDev\CatalogBundle\DependencyInjection\MLDevCatalogExtension;
use function dirname;
class MLDevCatalogBundle extends Bundle
{
public function getPath(): string
{
return dirname(__DIR__);
}
public function getContainerExtension()
{
return new MLDevCatalogExtension();
}
}