<?php declare(strict_types=1);
namespace K3n\ThemeAfterPlugins;
use Shopware\Core\Framework\Plugin;
use Shopware\Storefront\Framework\ThemeInterface;
class ThemeAfterPlugins extends Plugin implements ThemeInterface
{
public function getThemeConfigPath(): string
{
return 'theme.json';
}
}