Your IP : 18.222.71.13


Current Path : /home/bitrix/ext_www/klimatlend.ua/bitrix/modules/sale/lib/discount/gift/
Upload File :
Current File : /home/bitrix/ext_www/klimatlend.ua/bitrix/modules/sale/lib/discount/gift/gift.php

<?php

namespace Bitrix\Sale\Discount\Gift;


class Gift
{
	protected $productId;
	protected $isSku;

	/**
	 * Gift constructor.
	 * @param $productId
	 */
	public function __construct($productId)
	{
		$this->productId = $productId;
	}

	/**
	 * @return int|string
	 */
	public function getProductId()
	{
		return $this->productId;
	}

	public function getProduct()
	{
		//lazy load data from CCatalog
	}
}