<?php declare(strict_types=1);
namespace Ecd\econdLoader;
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;
class econdLoader extends Plugin
{
public function install(InstallContext $context): void
{
parent::install($context);
}
public function uninstall(UninstallContext $context): void
{
parent::uninstall($context);
}
public function activate(ActivateContext $context): void
{
parent::activate($context);
}
public function deactivate(DeactivateContext $context): void
{
parent::deactivate($context);
}
}