custom/plugins/EnderecoShopware6ClientStore/src/EnderecoShopware6ClientStore.php line 8

Open in your IDE?
  1. <?php
  2. namespace Endereco\Shopware6ClientStore;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  5. use Shopware\Core\Framework\Log\LoggerFactory;
  6. class EnderecoShopware6ClientStore extends Plugin
  7. {
  8.     /**
  9.      * @inheritDoc
  10.      */
  11.     public function uninstall(UninstallContext $context): void
  12.     {
  13.         parent::uninstall($context);
  14.         if ($context->keepUserData()) {
  15.             return;
  16.         }
  17.         // There is nothing to clean up. Yet.
  18.     }
  19. }