custom/plugins/armbrMailbeez/src/ArmbrMailbeez.php line 8

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