vendor/stimactiv/core-bundle/src/StimactivCoreBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace Stimactiv\CoreBundle;
  3. use Stimactiv\CoreBundle\DependencyInjection\StimactivCoreExtension;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. class StimactivCoreBundle extends Bundle
  6. {
  7.     public function getPath(): string
  8.     {
  9.         return \dirname(__DIR__);
  10.     }
  11.     public function getContainerExtension(): StimactivCoreExtension
  12.     {
  13.         return new StimactivCoreExtension();
  14.     }
  15. }