<?php declare(strict_types=1);
namespace NxsHrefLang;
use NxsHrefLang\Installer\CustomFieldInstaller;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\Framework\Plugin\Context\UpdateContext;
class NxsHrefLang extends Plugin
{
public function install(InstallContext $installContext): void
{
(new CustomFieldInstaller($this->container))->install($installContext);
}
public function update(UpdateContext $updateContext): void
{
(new CustomFieldInstaller($this->container))->update($updateContext);
}
}