vendor/stimactiv/log-bundle/src/StimactivLogBundle.php line 8

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