vendor/kunstmaan/dashboard-bundle/KunstmaanDashboardBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Kunstmaan\DashboardBundle;
  3. use Kunstmaan\DashboardBundle\DependencyInjection\Compiler\WidgetCompilerPass;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class KunstmaanDashboardBundle extends Bundle
  7. {
  8.     public function build(ContainerBuilder $container): void
  9.     {
  10.         parent::build($container);
  11.         $container->addCompilerPass(new WidgetCompilerPass());
  12.     }
  13. }