1
0
mirror of synced 2025-02-07 15:59:27 +03:00

22 lines
307 B
PHP
Raw Normal View History

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