1
0
mirror of synced 2025-01-19 15:01:40 +03:00
doctrine2/tests/models/cms/CmsPhonenumber.php

18 lines
315 B
PHP
Executable File

<?php
/**
* @DoctrineEntity
*/
class CmsPhonenumber implements Doctrine_ORM_Entity
{
/**
* @DoctrineColumn(type="string", length=50)
* @DoctrineId
*/
public $phonenumber;
/**
* @DoctrineManyToOne(targetEntity="CmsUser", joinColumns={"user_id" = "id"})
*/
public $user;
}