vendor/tellaw/sunshine-admin-bundle/Tellaw/SunshineAdminBundle/TellawSunshineAdminBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Tellaw\SunshineAdminBundle;
  3. use Symfony\Component\DependencyInjection\ContainerBuilder;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. use Tellaw\SunshineAdminBundle\CompilerPass\WidgetCompilerPass;
  6. class TellawSunshineAdminBundle extends Bundle
  7. {
  8.     public function build ContainerBuilder $container ) {
  9.         $container->addCompilerPass(new WidgetCompilerPass());
  10.     }
  11. }