custom/plugins/BioraumTheme/src/BioraumTheme.php line 8

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