vendor/elements/backendbootstrapthemebundle/src/ElementsBackendBootstrapThemeBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace Elements\Bundle\BackendBootstrapThemeBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. class ElementsBackendBootstrapThemeBundle extends AbstractPimcoreBundle
  6. {
  7.     public function getJsPaths()
  8.     {
  9.         return [];
  10.     }
  11.     public function build(ContainerBuilder $container)
  12.     {
  13.         parent::build($container);
  14.     }
  15. }