custom/plugins/DmfManuTheme/src/DmfManuTheme.php line 12

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. /*
  3.  * @author digital.manufaktur GmbH
  4.  * @link   https://www.digitalmanufaktur.com/
  5.  */
  6. namespace Dmf\ManuTheme;
  7. use Shopware\Core\Framework\Plugin;
  8. use Shopware\Storefront\Framework\ThemeInterface;
  9. class DmfManuTheme extends Plugin implements ThemeInterface
  10. {
  11.     public function getThemeConfigPath(): string
  12.     {
  13.         return 'theme.json';
  14.     }
  15. }