1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/models/cms/CmsUser.php

47 lines
950 B
PHP
Raw Normal View History

2008-02-09 02:20:35 +03:00
<?php
#namespace Doctrine\Tests\ORM\Models\Cms;
/**
* @DoctrineEntity
*/
class CmsUser
2008-02-09 02:20:35 +03:00
{
/**
* @DoctrineId
* @DoctrineColumn(type="integer")
* @DoctrineIdGenerator("auto")
*/
public $id;
/**
* @DoctrineColumn(type="varchar", length=50)
*/
public $status;
/**
* @DoctrineColumn(type="varchar", length=255)
*/
public $username;
/**
* @DoctrineColumn(type="varchar", length=255)
*/
public $name;
/**
2009-01-08 14:23:24 +03:00
* @DoctrineOneToMany(targetEntity="CmsPhonenumber", mappedBy="user", cascade={"save"})
*/
public $phonenumbers;
/**
* @DoctrineOneToMany(targetEntity="CmsArticle", mappedBy="user")
*/
public $articles;
/**
* Adds a phonenumber to the user.
*
* @param <type> $phone
*/
public function addPhonenumber(CmsPhonenumber $phone) {
$this->phonenumbers[] = $phone;
$phone->user = $this;
}
}