<?php declare(strict_types=1);
namespace ExpertAmCustomImporter;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\ActivateContext;
use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
class ExpertAmCustomImporter extends Plugin
{
public function activate(ActivateContext $activateContext): void
{
parent::activate($activateContext); // TODO: Change the autogenerated stub
}
public function deactivate(DeactivateContext $deactivateContext): void
{
parent::deactivate($deactivateContext); // TODO: Change the autogenerated stub
}
}