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