2008-05-08 18:17:35 +04:00
|
|
|
<?php
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2009-01-05 20:25:56 +03:00
|
|
|
#namespace Doctrine\Tests\Models\CMS;
|
2008-07-21 00:13:24 +04:00
|
|
|
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineEntity
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
class CmsComment
|
2008-05-08 18:17:35 +04:00
|
|
|
{
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="integer")
|
|
|
|
* @DoctrineId
|
|
|
|
* @DoctrineIdGenerator("auto")
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $id;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="string", length=255)
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $topic;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="string")
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $text;
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
|
|
|
* @DoctrineManyToOne(targetEntity="CmsArticle", joinColumns={"article_id" = "id"})
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public $article;
|
2008-05-08 18:17:35 +04:00
|
|
|
}
|