| 123456789101112131415161718192021222324252627282930313233343536373839404142 | <?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;
    }
}
 |