2008-05-06 13:41:22 +00:00
|
|
|
<?php
|
2009-01-05 17:25:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @DoctrineEntity
|
|
|
|
*/
|
|
|
|
class CmsPhonenumber implements Doctrine_ORM_Entity
|
2008-05-06 13:41:22 +00:00
|
|
|
{
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="string", length=50)
|
|
|
|
* @DoctrineId
|
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $phonenumber;
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineManyToOne(targetEntity="CmsUser", joinColumns={"user_id" = "id"})
|
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $user;
|
2008-05-06 13:41:22 +00:00
|
|
|
}
|