<?php
namespace Ce\CustomerSubaccounts;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\ActivateContext;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
class CeCustomerSubaccounts extends Plugin
{
public function activate(ActivateContext $activateContext): void
{
parent::activate($activateContext); // TODO: Change the autogenerated stub
}
public function uninstall(UninstallContext $uninstallContext): void
{
parent::uninstall($uninstallContext); // TODO: Change the autogenerated stub
}
}