custom/plugins/PremsAutoComplete6/src/PremsAutoComplete6.php line 14

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. /**
  3.  * PremSoft
  4.  * Copyright © 2019 Premsoft - Sven Mittreiter
  5.  *
  6.  * @copyright  Copyright (c) 2019, premsoft - Sven Mittreiter (http://www.premsoft.de)
  7.  * @author     Sven Mittreiter <info@premsoft.de>
  8.  */
  9. namespace Prems\Plugin\PremsAutoComplete6;
  10. use Shopware\Core\Framework\Plugin;
  11. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  12. class PremsAutoComplete6 extends Plugin
  13. {
  14.     /**public function getStorefrontScriptPath(): string
  15.     {
  16.       return 'Resources/dist/storefront/js';
  17.     }*/
  18.     public function uninstall(UninstallContext $context): void
  19.     {
  20.         parent::uninstall($context);
  21.         if ($context->keepUserData()) {
  22.             return;
  23.         }
  24.     }
  25. }