<?php declare(strict_types=1);
namespace Acris\MerchantRegister;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\Framework\Plugin\Context\ActivateContext;
class AcrisMerchantRegisterCS extends Plugin
{
public function activate(ActivateContext $context): void
{
}
public function install(InstallContext $context): void
{
}
public function uninstall(UninstallContext $context): void
{
if ($context->keepUserData()) {
return;
}
}
}