for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by Graham Owens ([email protected])
* Company: PartFire Ltd (www.partfire.co.uk)
* Console: Discovery
*
* User: gra
* Date: 12/01/17
* Time: 13:41
* Project: fruitful-property-investments
* File: Address.php
**/
namespace PartFire\MangoPayBundle\Models\DTOs;
class Address
{
private $addressLine1;
private $addressLine2;
private $city;
private $region;
private $postalCode;
private $country;
* @return mixed
*/
public function getAddressLine1()
return $this->addressLine1;
}
* @param mixed $addressLine1
public function setAddressLine1($addressLine1)
$this->addressLine1 = $addressLine1;
public function getAddressLine2()
return $this->addressLine2;
* @param mixed $addressLine2
public function setAddressLine2($addressLine2)
$this->addressLine2 = $addressLine2;
public function getCity()
return $this->city;
* @param mixed $city
public function setCity($city)
$this->city = $city;
public function getRegion()
return $this->region;
* @param mixed $region
public function setRegion($region)
$this->region = $region;
public function getPostalCode()
return $this->postalCode;
* @param mixed $postalCode
public function setPostalCode($postalCode)
$this->postalCode = $postalCode;
public function getCountry()
return $this->country;
* @param mixed $country
public function setCountry($country)
$this->country = $country;