<?php declare(strict_types=1);
namespace Acris\QuantityAdvanced;
use Doctrine\DBAL\Connection;
use Shopware\Core\Framework\Context;
use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\System\CustomField\CustomFieldTypes;
class AcrisQuantityAdvancedCS extends Plugin
{
public function install(InstallContext $context): void
{
}
public function uninstall(UninstallContext $context): void
{
if ($context->keepUserData()) {
return;
}
}
}