custom/static-plugins/theme-base/src/Wtheme.php line 12

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Wtheme;
  3. use Shopware\Core\Framework\Plugin;
  4. use Shopware\Storefront\Framework\ThemeInterface;
  5. /**
  6.  * Class Wtheme
  7.  * @package Wtheme
  8.  */
  9. class Wtheme extends Plugin implements ThemeInterface
  10. {
  11.     /**
  12.      * @return string
  13.      */
  14.     public function getThemeConfigPath(): string
  15.     {
  16.         return 'theme.json';
  17.     }
  18. }