Browse Source

Rename infosShipping

feature/export_comptable
Guillaume 4 years ago
parent
commit
45418551b2
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      ShopBundle/Model/OrderShop.php

+ 5
- 5
ShopBundle/Model/OrderShop.php View File

/** /**
* @ORM\Column(type="text", nullable=true) * @ORM\Column(type="text", nullable=true)
*/ */
protected $infosShipping;
protected $infosDelivery;


public function __construct() public function __construct()
{ {
return $this; 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; return $this;
} }

Loading…
Cancel
Save