|
|
@@ -83,7 +83,7 @@ abstract class OrderShop extends AbstractEntity implements FilterMerchantInterfa |
|
|
|
/** |
|
|
|
* @ORM\Column(type="text", nullable=true) |
|
|
|
*/ |
|
|
|
protected $infosDelivery; |
|
|
|
protected $deliveryInfos; |
|
|
|
|
|
|
|
public function __construct() |
|
|
|
{ |
|
|
@@ -329,14 +329,14 @@ abstract class OrderShop extends AbstractEntity implements FilterMerchantInterfa |
|
|
|
return $this; |
|
|
|
} |
|
|
|
|
|
|
|
public function getInfosDelivery(): ?string |
|
|
|
public function getDeliveryInfos(): ?string |
|
|
|
{ |
|
|
|
return $this->infosDelivery; |
|
|
|
return $this->deliveryInfos; |
|
|
|
} |
|
|
|
|
|
|
|
public function setInfosDelivery(?string $infosDelivery): self |
|
|
|
public function setDeliveryInfos(?string $deliveryInfos): self |
|
|
|
{ |
|
|
|
$this->infosDelivery = $infosDelivery; |
|
|
|
$this->deliveryInfos = $deliveryInfos; |
|
|
|
|
|
|
|
return $this; |
|
|
|
} |