1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/models/forum/ForumAvatar.php
2009-01-04 16:15:32 +00:00

23 lines
355 B
PHP

<?php
#namespace Doctrine\Tests\Models\Forum;
#use Doctrine\ORM\Entity;
class ForumAvatar
{
public $id;
public static function initMetadata($mapping)
{
$mapping->mapField(array(
'fieldName' => 'id',
'type' => 'integer',
'id' => true,
'idGenerator' => 'auto'
));
}
}
?>