for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Market\Content\Models\Base;
use Yandex\Common\Model;
class Price extends Model
{
protected $currencyName = null;
protected $currencyCode = null;
protected $discount = null;
protected $base = null;
protected $value = null;
/**
* Retrieve the currencyName property
*
* @return string|null
*/
public function getCurrencyName()
return $this->currencyName;
}
* Retrieve the currencyCode property
public function getCurrencyCode()
return $this->currencyCode;
* Retrieve the discount property
public function getDiscount()
return $this->discount;
* Retrieve the base property
public function getBase()
return $this->base;
public function getValue()
return $this->value;