Files
IniHausschuhTheme/src/IniHausschuhTheme.php
2021-09-03 10:32:10 +02:00

14 lines
293 B
PHP

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