custom/plugins/SwpCrosssellingInCartSix/src/SwpCrosssellingInCartSix.php line 11

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Swp\CrosssellingInCartSix;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  5. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  6. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  7. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  8. class SwpCrosssellingInCartSix extends Plugin
  9. {
  10.     public function install(InstallContext $installContext): void
  11.     {
  12.         parent::install($installContext);
  13.     }
  14.     public function activate(ActivateContext $activateContext): void
  15.     {
  16.         parent::activate($activateContext);
  17.     }
  18.     public function deactivate(DeactivateContext $deactivateContext): void
  19.     {
  20.         parent::deactivate($deactivateContext);
  21.     }
  22.     public function uninstall(UninstallContext $uninstallContext): void
  23.     {
  24.         parent::uninstall($uninstallContext);
  25.     }
  26. }