bundles/ProductBundle/ProductBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace ProductBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class ProductBundle extends AbstractPimcoreBundle
  5. {
  6.     public function getJsPaths(): array
  7.     {
  8.         return [
  9.             '/bundles/product/js/pimcore/startup.js',
  10.         ];
  11.     }
  12.     public function getCssPaths(): array
  13.     {
  14.         return [
  15.             '/bundles/product/css/pimcore/style.css',
  16.         ];
  17.     }
  18. }