vendor/store.shopware.com/tanmarnginfinitescrolling/src/TanmarNgInfiniteScrolling.php line 14

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Tanmar\NgInfiniteScrolling;
  4. use Shopware\Core\Framework\Plugin;
  5. use Shopware\Core\Framework\Plugin\Context\InstallContext;
  6. use Shopware\Core\Framework\Plugin\Context\UpdateContext;
  7. use Shopware\Core\Framework\Plugin\Context\UninstallContext;
  8. use Shopware\Core\Framework\Plugin\Context\ActivateContext;
  9. use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
  10. class TanmarNgInfiniteScrolling extends Plugin {
  11.     public function install(InstallContext $context): void {
  12.         parent::install($context);
  13.     }
  14.     public function update(UpdateContext $context): void {
  15.         parent::update($context);
  16.     }
  17.     public function activate(ActivateContext $context): void {
  18.         parent::activate($context);
  19.     }
  20.     public function deactivate(DeactivateContext $context): void {
  21.         parent::deactivate($context);
  22.     }
  23.     public function uninstall(UninstallContext $context): void {
  24.         parent::uninstall($context);
  25.     }
  26. }