Skip to content

Commit

Permalink
Merge remote-tracking branch 'github/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
bessudnov committed Sep 7, 2020
2 parents 984be92 + 67bdaf4 commit d01aa1a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ItemsCustomFieldValueModel extends BaseCustomFieldValueModel
protected $description;

/**
* @var int|null
* @var float|null
*/
protected $unitPrice;

Expand Down Expand Up @@ -138,19 +138,19 @@ public function setDescription($description)
}

/**
* @return int|null
* @return float|null
*/
public function getUnitPrice(): ?int
public function getUnitPrice(): ?float
{
return $this->unitPrice;
}

/**
* @param int|null $unitPrice
* @param float|null $unitPrice
*
* @return ItemsCustomFieldValueModel
*/
public function setUnitPrice(?int $unitPrice): ItemsCustomFieldValueModel
public function setUnitPrice(?float $unitPrice): ItemsCustomFieldValueModel
{
$this->unitPrice = $unitPrice;

Expand Down

0 comments on commit d01aa1a

Please sign in to comment.