<?php
namespace Stimactiv\CoreBundle;
use Stimactiv\CoreBundle\DependencyInjection\StimactivCoreExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class StimactivCoreBundle extends Bundle
{
public function getPath(): string
{
return \dirname(__DIR__);
}
public function getContainerExtension(): StimactivCoreExtension
{
return new StimactivCoreExtension();
}
}