ManyToOne(Address)

This commit is contained in:
Marc Ducobu
2014-10-03 10:42:29 +02:00
parent 9f3d89380d
commit c2869edbed
17 changed files with 688 additions and 14 deletions

View File

@@ -27,6 +27,8 @@ class BlopEntity
*/
private $customField;
private $adress;
/**
* Get id
@@ -38,6 +40,23 @@ class BlopEntity
return $this->id;
}
public function setAdress($a)
{
$this->adress = $a;
return $this;
}
/**
* Get field1
*
* @return string
*/
public function getAdress()
{
return $this->adress;
}
/**
* Set field1
*