for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PimpayBundle\Model;
/**
* Class Address
* @package PimpayBundle\Model
*/
class Address
{
* @var string
private $full;
private $zipcode;
private $city;
private $kladr;
* @var string|null
private $fias;
* @return string
public function getFull(): string
return $this->full;
}
* @param string $full
* @return $this
public function setFull(string $full)
$this->full = $full;
return $this;
public function getZipcode(): string
return $this->zipcode;
* @param string $zipcode
public function setZipcode(string $zipcode)
$this->zipcode = $zipcode;
public function getCity(): string
return $this->city;
* @param string $city
public function setCity(string $city)
$this->city = $city;
public function getKladr(): string
return $this->kladr;
* @param string $kladr
public function setKladr(string $kladr)
$this->kladr = $kladr;
* @return string|null
public function getFias()
return $this->fias;
* @param string|null $fias
public function setFias(string $fias = null)
$this->fias = $fias;