<?php declare(strict_types=1);
/**
* To Install Industryarc theme and its Shopping experience elements for the layout design.
*
* Copyright (C) BrandCrock GmbH. All rights reserved.
*
* If you have found this script useful a small
* recommendation as well as a comment on our
* home page(https://brandcrock.com/)
* would be greatly appreciated.
*
* @author BrandCrock GmbH
* @package BrandCrockIndustryarc
* @support support@brandcrock.com
*
* License proprietary.
*/
namespace Bc\BrandCrockIndustryarc;
use Shopware\Core\Framework\Plugin;
use Shopware\Storefront\Framework\ThemeInterface;
class BrandCrockIndustryarc extends Plugin implements ThemeInterface
{
/**
* Get the theme config path
* @return string
*/
public function getThemeConfigPath(): string
{
return 'theme.json';
}
}