2008-08-16 23:40:59 +04:00
|
|
|
<?php
|
|
|
|
|
2009-01-04 19:15:32 +03:00
|
|
|
#namespace Doctrine\Tests\Models\Forum;
|
2008-12-18 17:08:11 +03:00
|
|
|
|
|
|
|
#use Doctrine\ORM\Entity;
|
|
|
|
|
|
|
|
class ForumAvatar
|
2008-08-16 23:40:59 +04:00
|
|
|
{
|
2008-12-18 17:08:11 +03:00
|
|
|
public $id;
|
|
|
|
|
2008-08-16 23:40:59 +04:00
|
|
|
public static function initMetadata($mapping)
|
|
|
|
{
|
|
|
|
$mapping->mapField(array(
|
|
|
|
'fieldName' => 'id',
|
|
|
|
'type' => 'integer',
|
|
|
|
'id' => true,
|
|
|
|
'idGenerator' => 'auto'
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|