14 lines
235 B
PHP
14 lines
235 B
PHP
<?php
|
|
|
|
class CompanyManager extends CompanyEmployee
|
|
{
|
|
public static function initMetadata($mapping)
|
|
{
|
|
$mapping->mapColumn(array(
|
|
'fieldName' => 'title',
|
|
'type' => 'string'
|
|
));
|
|
}
|
|
}
|
|
|
|
?>
|