123456789101112131415161718192021222324252627282930313233 |
- <?php
-
- namespace Doctrine\Tests\Models\Company;
-
- /**
- * @Entity
- * @Table(name="company_cars")
- */
- class CompanyCar
- {
- /**
- * @Id @Column(type="integer")
- * @GeneratedValue(strategy="AUTO")
- */
- private $id;
-
- /**
- * @Column(type="string", length="50")
- */
- private $brand;
-
- public function __construct($brand = null) {
- $this->brand = $brand;
- }
-
- public function getId() {
- return $this->id;
- }
-
- public function getBrand() {
- return $this->title;
- }
- }
|