custom/plugins/ApplifactionFinalInvoice/src/ApplifactionFinalInvoice.php line 18

Open in your IDE?
  1. <?php
  2. /*
  3.  * Copyright (c) Applifaction LLC. All rights reserved.
  4.  * This file is part of software that is released under a proprietary license.
  5.  * You must not copy, modify, distribute, make publicly available, or execute
  6.  * its contents or parts thereof without express permission by the copyright
  7.  * holder, unless otherwise permitted by law.
  8.  */
  9. declare(strict_types=1);
  10. namespace ApplifactionFinalInvoice;
  11. use ApplifactionFinalInvoice\Compatibility\DependencyLoader;
  12. use Shopware\Core\Framework\Plugin;
  13. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  14. class ApplifactionFinalInvoice extends Plugin
  15. {
  16.     public function uninstall(UninstallContext $uninstallContext): void
  17.     {
  18.         parent::uninstall($uninstallContext);
  19.         if ($uninstallContext->keepUserData()) {
  20.             return;
  21.         }
  22.     }
  23. }