<?php declare(strict_types=1);
namespace Ott\ModifyAkeneoProductDescription;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\ActivateContext;
use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
class OttModifyAkeneoProductDescription extends Plugin
{
public function install(InstallContext $context): void
{
}
public function activate(ActivateContext $context): void
{
}
public function deactivate(DeactivateContext $context): void
{
}
}