vendor/creativect/twepa-theme/src/TwepaTheme.php line 14

Open in your IDE?
  1. <?php
  2. namespace TwepaTheme;
  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 Shopware\Core\Framework\Plugin\Context\UpdateContext;
  9. use Shopware\Storefront\Framework\ThemeInterface;
  10. class TwepaTheme extends Plugin implements ThemeInterface
  11. {
  12.     public function install(InstallContext $installContext): void
  13.     {
  14.     }
  15.     public function postInstall(InstallContext $installContext): void
  16.     {
  17.     }
  18.     public function update(UpdateContext $updateContext): void
  19.     {
  20.     }
  21.     public function postUpdate(UpdateContext $updateContext): void
  22.     {
  23.     }
  24.     public function activate(ActivateContext $activateContext): void
  25.     {
  26.     }
  27.     public function deactivate(DeactivateContext $deactivateContext): void
  28.     {
  29.     }
  30.     public function uninstall(UninstallContext $uninstallContext): void
  31.     {
  32.     }
  33. }