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

23 lines
377 B
PHP
Raw Normal View History

2008-08-31 18:28:22 +00:00
<?php
namespace Doctrine\Tests\Models\Company;
/**
* @Entity
* @Table(name="company_managers")
*/
2008-08-31 18:28:22 +00:00
class CompanyManager extends CompanyEmployee
{
/**
* @Column(type="string", length="250")
*/
private $title;
public function getTitle() {
return $this->title;
}
public function setTitle($title) {
$this->title = $title;
}
}