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

Open in your IDE?
  1. <?php
  2. namespace Ce\CustomerSubaccounts;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  5. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  6. class CeCustomerSubaccounts extends Plugin
  7. {
  8.         public function activate(ActivateContext $activateContext): void
  9.         {
  10.             parent::activate($activateContext); // TODO: Change the autogenerated stub
  11.         }
  12.         public function uninstall(UninstallContext $uninstallContext): void
  13.         {
  14.             parent::uninstall($uninstallContext); // TODO: Change the autogenerated stub
  15.         }
  16. }