1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/tests/models/forum/ForumAdministrator.php

9 lines
162 B
PHP
Raw Normal View History

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