<?php declare(strict_types=1);
namespace Crehler\AsusEngine;
use Crehler\AsusEngine\Lifecycle\ActivateDeactivate;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\ActivateContext;
use Shopware\Core\Framework\Plugin\Context\UpdateContext;
use Shopware\Storefront\Framework\ThemeInterface;
class CrehlerAsusEngine extends Plugin implements ThemeInterface
{
// public function activate(ActivateContext $activateContext): void
// {
// (new ActivateDeactivate($this->container->get('custom_field_set.repository')))
// ->activate($activateContext);
// }
//
// public function update(UpdateContext $updateContext): void
// {
// (new ActivateDeactivate($this->container->get('custom_field_set.repository')))
// ->activate($updateContext);
// }
}