New Header / Slider / Infos from API

This commit is contained in:
Kevin Adametz 2019-12-28 20:12:23 +01:00
parent 645ea5da7d
commit ee89626864
49 changed files with 6213 additions and 965 deletions

View file

@ -127,9 +127,9 @@ class TravelBooking
/**
* @var string
*
* @ORM\Column(name="fax", type="string", length=255, nullable=true)
* @ORM\Column(name="mobile", type="string", length=255, nullable=true)
*/
private $fax;
private $mobile;
/**
* @var string
@ -681,27 +681,27 @@ class TravelBooking
}
/**
* Set fax
* Set mobile
*
* @param string $fax
* @param string $mobile
*
* @return TravelBooking
*/
public function setFax($fax)
public function setMobile($mobile)
{
$this->fax = $fax;
$this->mobile = $mobile;
return $this;
}
/**
* Get fax
* Get mobile
*
* @return string
*/
public function getFax()
public function getMobile()
{
return $this->fax;
return $this->mobile;
}
/**