<?php
namespace cutvert\Seo;
use Doctrine\DBAL\Connection;
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;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
use cutvert\Seo\Migration\Migration0000000002CutvertDatabase;
class cutvertSeo extends Plugin
{
function install(InstallContext $installContext): void
{
parent::install($installContext); // TODO: Change the autogenerated stub
}
}