2008-05-06 21:03:31 +00:00
|
|
|
<?php
|
2008-07-20 20:13:24 +00:00
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\Tests\Models\CMS;
|
2008-07-20 20:13:24 +00:00
|
|
|
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
2009-01-22 19:38:10 +00:00
|
|
|
* @DoctrineEntity(tableName="cms_articles")
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
class CmsArticle
|
2008-05-06 21:03:31 +00:00
|
|
|
{
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineId
|
|
|
|
* @DoctrineColumn(type="integer")
|
|
|
|
* @DoctrineIdGenerator("auto")
|
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $id;
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
2009-01-07 17:46:02 +00:00
|
|
|
* @DoctrineColumn(type="varchar", length=255)
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $topic;
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
2009-01-07 17:46:02 +00:00
|
|
|
* @DoctrineColumn(type="varchar")
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $text;
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
2009-01-22 19:38:10 +00:00
|
|
|
* @DoctrineManyToOne(targetEntity="Doctrine\Tests\Models\CMS\CmsUser",
|
|
|
|
joinColumns={"user_id" = "id"})
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $user;
|
2009-01-05 17:25:56 +00:00
|
|
|
/**
|
2009-01-22 19:38:10 +00:00
|
|
|
* @DoctrineOneToMany(targetEntity="Doctrine\Tests\Models\CMS\CmsComment", mappedBy="article")
|
2009-01-05 17:25:56 +00:00
|
|
|
*/
|
2008-12-18 14:08:11 +00:00
|
|
|
public $comments;
|
2008-05-06 21:03:31 +00:00
|
|
|
}
|