%PDF- %PDF-
| Direktori : /home/bitrix/www/bitrix/modules/sale/lib/discount/gift/ |
| Current File : //home/bitrix/www/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
}
}