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

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