custom/plugins/NextagGiftcard/src/NextagGiftcard.php line 9

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Nextag\Giftcard;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  5. class NextagGiftcard extends Plugin
  6. {
  7.     public function uninstall(UninstallContext $uninstallContext): void
  8.     {
  9.        // if ($uninstallContext->keepUserData()) {
  10.             return;
  11.        // }
  12.     }
  13. }