app/Service/Kernel/Bundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Sq\Service\Kernel;
  3. use Symfony\Component\DependencyInjection\ContainerBuilder;
  4. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle as KernelBundle;
  6. class Bundle extends KernelBundle
  7. {
  8.     public const BUNDLE_NAME 'smarterqueue';
  9.     public function getContainerExtension(): ExtensionInterface
  10.     {
  11.         return new Extension;
  12.     }
  13.     public function build(ContainerBuilder $container)
  14.     {
  15.     }
  16. }