<?php
namespace TwepaTheme;
use Shopware\Core\Framework\Plugin;
use Shopware\Core\Framework\Plugin\Context\ActivateContext;
use Shopware\Core\Framework\Plugin\Context\DeactivateContext;
use Shopware\Core\Framework\Plugin\Context\InstallContext;
use Shopware\Core\Framework\Plugin\Context\UninstallContext;
use Shopware\Core\Framework\Plugin\Context\UpdateContext;
use Shopware\Storefront\Framework\ThemeInterface;
class TwepaTheme extends Plugin implements ThemeInterface
{
public function install(InstallContext $installContext): void
{
}
public function postInstall(InstallContext $installContext): void
{
}
public function update(UpdateContext $updateContext): void
{
}
public function postUpdate(UpdateContext $updateContext): void
{
}
public function activate(ActivateContext $activateContext): void
{
}
public function deactivate(DeactivateContext $deactivateContext): void
{
}
public function uninstall(UninstallContext $uninstallContext): void
{
}
}