123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
-
- namespace Doctrine\Tests\Models\Legacy;
-
- use Doctrine\Common\Collections\ArrayCollection;
-
-
- class LegacyCar
- {
-
-
- public $_id;
-
-
- public $_users;
-
-
-
- public $_description;
-
- function getDescription()
- {
- return $this->_description;
- }
-
- public function addUser(LegacyUser $user) {
- $this->_users[] = $user;
- }
-
- public function getUsers() {
- return $this->_users;
- }
- }
|