vendor/store.shopware.com/nrlejpostdirektautocomplete/src/NRLEJPostDirektAutocomplete.php line 23

Open in your IDE?
  1. <?php
  2. /**
  3.  * See LICENSE.md for license details.
  4.  */
  5. declare(strict_types=1);
  6. namespace PostDirekt\Autocomplete;
  7. use Shopware\Core\Framework\Plugin;
  8. if (file_exists(__DIR__ '/../vendor/autoload.php')) {
  9.     $autoloadPath __DIR__ '/../vendor/autoload.php';
  10. }
  11. if (file_exists(__DIR__ '/../vendor/scoper-autoload.php')) {
  12.     $autoloadPath __DIR__ '/../vendor/scoper-autoload.php';
  13. }
  14. if (isset($autoloadPath)) {
  15.     require_once $autoloadPath;
  16. }
  17. class NRLEJPostDirektAutocomplete extends Plugin
  18. {
  19. }