custom/plugins/WabsBestaendeSync/src/WabsBestaendeSync.php line 9

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace WabsBestaendeSync;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  5. use Shopware\Core\Framework\Plugin\Context\UpdateContext;
  6. class WabsBestaendeSync extends Plugin
  7. {
  8.     public function activate(ActivateContext $activateContext): void
  9.     {
  10.         $activateContext->setAutoMigrate(true);
  11.     }
  12.     public function update(UpdateContext $updateContext): void
  13.     {
  14.         $updateContext->setAutoMigrate(true);
  15.     }
  16. }