<?php
namespace Endereco\Shopware6ClientStore;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
use Shopware\Core\Framework\Log\LoggerFactory;
class EnderecoShopware6ClientStore extends Plugin
{
/**
* @inheritDoc
*/
public function uninstall(UninstallContext $context): void
{
parent::uninstall($context);
if ($context->keepUserData()) {
return;
}
// There is nothing to clean up. Yet.
}
}