<?php
namespace Elements\Bundle\BackendBootstrapThemeBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
class ElementsBackendBootstrapThemeBundle extends AbstractPimcoreBundle
{
public function getJsPaths()
{
return [];
}
public function build(ContainerBuilder $container)
{
parent::build($container);
}
}