<?php declare(strict_types=1);
/*
* @author digital.manufaktur GmbH
* @link https://www.digitalmanufaktur.com/
*/
namespace Dmf\ManuTheme;
use Shopware\Core\Framework\Plugin;
use Shopware\Storefront\Framework\ThemeInterface;
class DmfManuTheme extends Plugin implements ThemeInterface
{
public function getThemeConfigPath(): string
{
return 'theme.json';
}
}