12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
-
- namespace Doctrine\Tests\Models\Company;
-
-
- class CompanyManager extends CompanyEmployee
- {
-
-
- private $title;
-
-
-
- private $car;
-
- public function getTitle() {
- return $this->title;
- }
-
- public function setTitle($title) {
- $this->title = $title;
- }
-
- public function getCar() {
- return $this->car;
- }
-
- public function setCar(CompanyCar $car) {
- $this->car = $car;
- }
- }
|