vendor/javra/re-index-on-the-fly-bundle/src/ReIndexOnTheFlyBundle.php line 7

Open in your IDE?
  1. <?php
  2. namespace Javra\ReIndexOnTheFlyBundle;
  3. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  4. class ReIndexOnTheFlyBundle extends AbstractPimcoreBundle
  5. {
  6.     public function getJsPaths(): array
  7.     {
  8.         return [
  9.             '/bundles/reindexonthefly/js/pimcore/startup.js'
  10.         ];
  11.     }
  12.     /**
  13.      * @inheritDoc
  14.      */
  15.     protected function getComposerPackageName(): string
  16.     {
  17.         return 'javra/re-index-on-the-fly-bundle';
  18.     }
  19. }