1
0
mirror of synced 2025-01-31 12:32:59 +03:00

30 lines
567 B
PHP
Raw Normal View History

2008-05-08 14:17:35 +00:00
<?php
namespace Doctrine\Tests\Models\CMS;
/**
* @DoctrineEntity(tableName="cms_comments")
*/
class CmsComment
2008-05-08 14:17:35 +00:00
{
/**
* @DoctrineColumn(type="integer")
* @DoctrineId
* @DoctrineIdGenerator("auto")
*/
public $id;
/**
* @DoctrineColumn(type="varchar", length=255)
*/
public $topic;
/**
* @DoctrineColumn(type="varchar")
*/
public $text;
/**
* @DoctrineManyToOne(targetEntity="Doctrine\Tests\Models\CMS\CmsArticle",
joinColumns={"article_id" = "id"})
*/
public $article;
2008-05-08 14:17:35 +00:00
}