1
0
Fork 0
mirror of synced 2025-03-29 03:09:50 +03:00
doctrine2/tests/models/forum/ForumAdministrator.php
2009-01-04 16:15:32 +00:00

17 lines
No EOL
347 B
PHP

<?php
#namespace Doctrine\Tests\Models\Forum;
class ForumAdministrator extends ForumUser
{
public $accessLevel;
public static function initMetadata($mapping)
{
$mapping->mapField(array(
'fieldName' => 'accessLevel',
'columnName' => 'access_level',
'type' => 'integer'
));
}
}