1
0
mirror of synced 2025-01-18 22:41:43 +03:00

14 lines
235 B
PHP
Raw Normal View History

2008-08-31 18:28:22 +00:00
<?php
class CompanyManager extends CompanyEmployee
{
public static function initMetadata($mapping)
{
$mapping->mapColumn(array(
'fieldName' => 'title',
'type' => 'string'
));
}
}
?>