custom/plugins/DmSanettaTheme/src/SanettaTheme.php line 8

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace SanettaTheme;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Storefront\Framework\ThemeInterface;
  5. class SanettaTheme extends Plugin implements ThemeInterface
  6. {
  7.     public function getThemeConfigPath(): string
  8.     {
  9.         return 'theme.json';
  10.     }
  11. }