for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultureKings\Afterpay\Model\Merchant;
/**
* Class Contact
*
* @package CultureKings\Afterpay\Model\Merchant
*/
class Contact
{
* @var string
protected $name;
protected $line1;
protected $line2;
protected $suburb;
protected $state;
protected $postcode;
protected $countryCode;
protected $phoneNumber;
* @return string
public function getName()
return $this->name;
}
public function getLine1()
return $this->line1;
public function getLine2()
return $this->line2;
public function getSuburb()
return $this->suburb;
public function getState()
return $this->state;
public function getPostcode()
return $this->postcode;
public function getCountryCode()
return $this->countryCode;
public function getPhoneNumber()
return $this->phoneNumber;
* @param string $name
* @return $this
public function setName($name)
$this->name = $name;
return $this;
* @param string $line1
public function setLine1($line1)
$this->line1 = $line1;
* @param string $line2
public function setLine2($line2)
$this->line2 = $line2;
* @param string $suburb
public function setSuburb($suburb)
$this->suburb = $suburb;
* @param string $state
public function setState($state)
$this->state = $state;
* @param string $postcode
public function setPostcode($postcode)
$this->postcode = $postcode;
* @param string $countryCode
public function setCountryCode($countryCode)
$this->countryCode = $countryCode;
* @param string $phoneNumber
public function setPhoneNumber($phoneNumber)
$this->phoneNumber = $phoneNumber;