<?php declare(strict_types=1);
namespace WabsWareneingangSync;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\ActivateContext;
use Shopware\Core\Framework\Plugin\Context\UpdateContext;
class WabsWareneingangSync extends Plugin
{
//TODO: Stephan: Wareneingang mit Steffen auf V2 umstellen.
// Wareneingänge als gebündelte WEs versenden. Beispiel Lieferschein
public function activate(ActivateContext $activateContext): void
{
$activateContext->setAutoMigrate(true);
}
public function update(UpdateContext $updateContext): void
{
$updateContext->setAutoMigrate(true);
}
}