Kaynağa Gözat

Rename infosShipping

feature/export_comptable
Guillaume 4 yıl önce
ebeveyn
işleme
45418551b2
1 değiştirilmiş dosya ile 5 ekleme ve 5 silme
  1. +5
    -5
      ShopBundle/Model/OrderShop.php

+ 5
- 5
ShopBundle/Model/OrderShop.php Dosyayı Görüntüle

@@ -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;
}

Yükleniyor…
İptal
Kaydet