for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ptondereau\GoogleAddressConverter;
class Address
{
/**
* @var string
*/
protected $addressLine1;
protected $addressLine2;
protected $addressLine3;
protected $city;
protected $zipCode;
protected $country;
* @return string
public function getAddressLine1()
return $this->addressLine1;
}
* @param string $addressLine1
*
* @return $this
public function setAddressLine1($addressLine1)
$this->addressLine1 = $addressLine1;
return $this;
public function getAddressLine2()
return $this->addressLine2;
* @param string $addressLine2
public function setAddressLine2($addressLine2)
$this->addressLine2 = $addressLine2;
public function getAddressLine3()
return $this->addressLine3;
* @param string $addressLine3
public function setAddressLine3($addressLine3)
$this->addressLine3 = $addressLine3;
public function getCity()
return $this->city;
* @param string $city
public function setCity($city)
$this->city = $city;
public function getZipCode()
return $this->zipCode;
* @param string $zipCode
public function setZipCode($zipCode)
$this->zipCode = $zipCode;
public function getCountry()
return $this->country;
* @param string $country
public function setCountry($country)
$this->country = $country;