|
|
@@ -88,7 +88,7 @@ abstract class OrderShop implements FilterMerchantInterface |
|
|
|
/** |
|
|
|
* @ORM\Column(type="text", nullable=true) |
|
|
|
*/ |
|
|
|
protected $infosShipping; |
|
|
|
protected $infosDelivery; |
|
|
|
|
|
|
|
public function __construct() |
|
|
|
{ |
|
|
@@ -310,14 +310,14 @@ abstract class OrderShop implements FilterMerchantInterface |
|
|
|
return $this; |
|
|
|
} |
|
|
|
|
|
|
|
public function getInfosShipping(): ?string |
|
|
|
public function getInfosDelivery(): ?string |
|
|
|
{ |
|
|
|
return $this->infosShipping; |
|
|
|
return $this->infosDelivery; |
|
|
|
} |
|
|
|
|
|
|
|
public function setInfosShipping(?string $infosShipping): self |
|
|
|
public function setInfosDelivery(?string $infosDelivery): self |
|
|
|
{ |
|
|
|
$this->infosShipping = $infosShipping; |
|
|
|
$this->infosDelivery = $infosDelivery; |
|
|
|
|
|
|
|
return $this; |
|
|
|
} |