custom/plugins/MndCookie/src/MndCookie.php line 8

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