custom/plugins/ExpertAmCustomImporter-master/src/ExpertAmCustomImporter.php line 9

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace ExpertAmCustomImporter;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  5. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  6. class ExpertAmCustomImporter extends Plugin
  7. {
  8.     public function activate(ActivateContext $activateContext): void
  9.     {
  10.         parent::activate($activateContext); // TODO: Change the autogenerated stub
  11.     }
  12.     public function deactivate(DeactivateContext $deactivateContext): void
  13.     {
  14.         parent::deactivate($deactivateContext); // TODO: Change the autogenerated stub
  15.     }
  16. }