2008-08-31 18:28:22 +00:00
|
|
|
<?php
|
|
|
|
|
2009-02-18 07:59:11 +00:00
|
|
|
namespace Doctrine\Tests\Models\Company;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @DoctrineEntity
|
2009-05-21 08:53:40 +00:00
|
|
|
* @DoctrineTable(name="company_managers")
|
|
|
|
* @DoctrineDiscriminatorValue("manager")
|
2009-02-18 07:59:11 +00:00
|
|
|
*/
|
2008-08-31 18:28:22 +00:00
|
|
|
class CompanyManager extends CompanyEmployee
|
|
|
|
{
|
2009-05-21 08:53:40 +00:00
|
|
|
/**
|
|
|
|
* @DoctrineColumn(type="string", length="250")
|
2009-02-18 07:59:11 +00:00
|
|
|
*/
|
2009-05-21 08:53:40 +00:00
|
|
|
private $title;
|
|
|
|
|
|
|
|
public function getTitle() {
|
|
|
|
return $this->title;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setTitle($title) {
|
|
|
|
$this->title = $title;
|
|
|
|
}
|
2009-02-18 07:59:11 +00:00
|
|
|
}
|