for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doctrine\Tests\Models\DDC3303;
/**
* @Embeddable
*/
class DDC3303Address
{
* @Column(type="string")
*
* @var string
private $street;
* @Column(type="integer")
* @var int
private $number;
private $city;
public function __construct($street, $number, $city)
$this->street = $street;
$this->number = $number;
$this->city = $city;
}
* @return string
public function getStreet()
return $this->street;
* @return mixed
public function getNumber()
return $this->number;
public function getCity()
return $this->city;