vendor/opctim/symfony-csp-bundle/src/OpctimCspBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Opctim\CspBundle;
  3. use Opctim\CspBundle\DependencyInjection\OpctimCspBundleExtension;
  4. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class OpctimCspBundle extends Bundle
  7. {
  8.     public function getContainerExtension(): ExtensionInterface
  9.     {
  10.         return new OpctimCspBundleExtension();
  11.     }
  12.     public function getPath(): string
  13.     {
  14.         return __DIR__;
  15.     }
  16. }