<?php declare(strict_types=1);
namespace Cogi\Closeout;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
class CogiCloseout extends Plugin
{
public function install(InstallContext $installContext): void
{
parent::install($installContext);
}
}