123456789101112131415161718192021222324252627282930313233 |
- <?php
-
- namespace Doctrine\Tests\Models\Company;
-
-
- class CompanyCar
- {
-
-
- private $id;
-
-
-
- private $brand;
-
- public function __construct($brand = null) {
- $this->brand = $brand;
- }
-
- public function getId() {
- return $this->id;
- }
-
- public function getBrand() {
- return $this->title;
- }
- }
|