custom/plugins/clerkio64/src/clerkio64.php line 12

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace CLERKIO64\clerkio64;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  5. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  6. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  7. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  8. use Symfony\Component\DependencyInjection\ContainerBuilder;
  9. class clerkio64 extends Plugin
  10. {
  11.     public function build(ContainerBuilder $container): void
  12.     {
  13.         parent::build($container);
  14.     }
  15.     public function install(InstallContext $installContext): void
  16.     {
  17.         parent::install($installContext);
  18.     }
  19.     public function activate(ActivateContext $activateContext): void
  20.     {
  21.         parent::activate($activateContext);
  22.     }
  23.     public function deactivate(DeactivateContext $deactivateContext): void
  24.     {
  25.         parent::deactivate($deactivateContext);
  26.     }
  27.     public function uninstall(UninstallContext $uninstallContext): void
  28.     {
  29.         parent::uninstall($uninstallContext);
  30.     }
  31. }