1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Doctrine\Tests\Models\Legacy;
- use Doctrine\Common\Collections\ArrayCollection;
- /**
- * @Entity
- * @Table(name="legacy_cars")
- */
- class LegacyCar
- {
- /**
- * @Id
- * @GeneratedValue
- * @Column(name="iCarId", type="integer", nullable=false)
- */
- public $_id;
- /**
- * @ManyToMany(targetEntity="LegacyUser", mappedBy="_cars")
- */
- public $_users;
- /**
- * @Column(name="sDescription", type="string", length=255, unique=true)
- */
- public $_description;
- function getDescription()
- {
- return $this->_description;
- }
- public function addUser(LegacyUser $user) {
- $this->_users[] = $user;
- }
- public function getUsers() {
- return $this->_users;
- }
- }
|