custom/plugins/ExpertApiProductFinder-master/src/ExpertProductFinder.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Expert\ExpertProductFinder;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  5. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  6. class ExpertProductFinder extends Plugin
  7. {
  8.     /**
  9.      * @param ActivateContext $activateContext
  10.      */
  11.     public function activate(ActivateContext $activateContext): void
  12.     {
  13.         parent::activate($activateContext);
  14.     }
  15.     /**
  16.      * @param DeactivateContext $deactivateContext
  17.      */
  18.     public function deactivate(DeactivateContext $deactivateContext): void
  19.     {
  20.         parent::deactivate($deactivateContext);
  21.     }
  22. }