* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Theme\Command; use PrestaShop\PrestaShop\Core\Domain\Theme\ValueObject\ThemeName; /** * Class ResetThemeLayoutsCommand resets theme's page layouts to defaults. */ class ResetThemeLayoutsCommand { /** * @var ThemeName */ private $themeName; /** * @param ThemeName $themeName */ public function __construct(ThemeName $themeName) { $this->themeName = $themeName; } /** * @return ThemeName */ public function getThemeName() { return $this->themeName; } }