for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TestEntities;
use Doctrine\ORM\Mapping AS ORM;
/** @ORM\Entity */
class Address
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue
*/
private $id;
/** @ORM\Column(type="string") */
private $name;
private $street;
private $zip;
private $city;
public function __construct()
}
* @param mixed $name
public function setName($name)
$this->name = $name;
* @return mixed
public function getName()
return $this->name;
* @param mixed $street
public function setStreet($street)
$this->street = $street;
public function getStreet()
return $this->street;
* @param mixed $zip
public function setZip($zip)
$this->zip = $zip;
public function getZip()
return $this->zip;
* @param mixed $city
public function setCity($city)
$this->city = $city;
public function getCity()
return $this->city;