1
0
mirror of synced 2025-01-06 00:57:10 +03:00
doctrine2/tests/models/forum/ForumEntry.php

22 lines
308 B
PHP
Raw Normal View History

<?php
2009-01-04 19:15:32 +03:00
#namespace Doctrine\Tests\Models\Forum;
/**
* @DoctrineEntity
*/
class ForumEntry
{
/**
* @DoctrineId
* @DoctrineColumn(type="integer")
* @DoctrineIdGenerator("auto")
*/
public $id;
/**
* @DoctrineColumn(type="varchar", length=50)
*/
public $topic;
}