1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/tests/models/forum/ForumEntry.php

22 lines
307 B
PHP

<?php
#namespace Doctrine\Tests\Models\Forum;
/**
* @DoctrineEntity
*/
class ForumEntry
{
/**
* @DoctrineId
* @DoctrineColumn(type="integer")
* @DoctrineIdGenerator("auto")
*/
public $id;
/**
* @DoctrineColumn(type="string", length=50)
*/
public $topic;
}