<?php declare(strict_types=1);
namespace fourtwosix\MegaSearchSw;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Context;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
class fourtwosixMegaSearchSw extends Plugin
{
public function install(InstallContext $context): void
{
}
public function uninstall(UninstallContext $context): void
{
}
}