1
0
mirror of synced 2025-01-19 15:01:40 +03:00
doctrine2/tests/models/forum/ForumAdministrator.php

9 lines
162 B
PHP
Raw Normal View History

2008-02-11 19:56:26 +00:00
<?php
class ForumAdministrator extends ForumUser
{
public static function initMetadata($class)
{
2008-02-16 19:10:16 +00:00
$class->mapColumn('foo', 'string', 50);
2008-02-11 19:56:26 +00:00
}
}