custom/plugins/fourtwosixMegaSearchSw/src/fourtwosixMegaSearchSw.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace fourtwosix\MegaSearchSw;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Context;
  5. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  6. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  7. class fourtwosixMegaSearchSw extends Plugin
  8. {
  9.     public function install(InstallContext $context): void
  10.     {
  11.         
  12.     }
  13.     public function uninstall(UninstallContext $context): void
  14.     {
  15.         
  16.     }
  17. }