custom/plugins/cutvertSeo/src/cutvertSeo.php line 13

Open in your IDE?
  1. <?php
  2. namespace cutvert\Seo;
  3. use Doctrine\DBAL\Connection;
  4. use Shopware\Core\Framework\Plugin;
  5. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  6. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  7. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  8. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  9. use cutvert\Seo\Migration\Migration0000000002CutvertDatabase;
  10. class cutvertSeo extends Plugin
  11. {
  12.     function install(InstallContext $installContext): void
  13.     {
  14.         parent::install($installContext); // TODO: Change the autogenerated stub
  15.     }
  16. }