vendor/sition/cms-elements/src/SitionCmsElements.php line 8

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