1
0
Fork 0
mirror of synced 2025-04-18 16:41:02 +00:00

fix custom prices (#204)

This commit is contained in:
Сергей Чазов 2021-05-31 11:14:02 +03:00 committed by DmitreyZl
parent 6ac636915e
commit 16a1a5e9d8

View file

@ -147,10 +147,11 @@ class CustomerAddress extends BaseModel
}
/**
* @param string $floor
* @param string|null $floor
*
* @return $this
*/
public function setFloor(string $floor)
public function setFloor(?string $floor): CustomerAddress
{
$this->floor = $floor;