custom/plugins/ApplifactionPropertyOptimization/src/ApplifactionPropertyOptimization.php line 19

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 ApplifactionPropertyOptimization;
  11. use ApplifactionPropertyOptimization\Compatibility\DependencyLoader;
  12. use Shopware\Core\Framework\Plugin;
  13. use Symfony\Component\DependencyInjection\ContainerBuilder;
  14. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  15. class ApplifactionPropertyOptimization extends Plugin
  16. {
  17.     public function uninstall(UninstallContext $uninstallContext): void
  18.     {
  19.         parent::uninstall($uninstallContext);
  20.         if ($uninstallContext->keepUserData()) {
  21.             return;
  22.         }
  23.     }
  24. }