for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AlexCk\MailchimpBundle\Model\MailChimp;
class ListItemContact
{
/**
* @var string
*/
private $company;
private $address1;
private $address2;
private $city;
private $state;
private $zip;
private $country;
private $phone;
public function getCompany(): string
return $this->company;
}
public function setCompany(string $company): ListItemContact
$this->company = $company;
return $this;
public function getAddress1(): string
return $this->address1;
public function setAddress1(string $address1): ListItemContact
$this->address1 = $address1;
public function getAddress2(): string
return $this->address2;
public function setAddress2(string $address2): ListItemContact
$this->address2 = $address2;
public function getCity(): string
return $this->city;
public function setCity(string $city): ListItemContact
$this->city = $city;
public function getState(): string
return $this->state;
public function setState(string $state): ListItemContact
$this->state = $state;
public function getZip(): string
return $this->zip;
public function setZip(string $zip): ListItemContact
$this->zip = $zip;
public function getCountry(): string
return $this->country;
public function setCountry(string $country): ListItemContact
$this->country = $country;
public function getPhone(): string
return $this->phone;
public function setPhone(string $phone): ListItemContact
$this->phone = $phone;