123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
-
- namespace Doctrine\Tests\Models\CMS;
-
- /**
- * Description of CmsEmployee
- *
- * @author robo
- * @Entity
- * @Table(name="cms_employees")
- */
- class CmsEmployee
- {
- /**
- * @Id
- * @Column(type="integer")
- * @GeneratedValue
- */
- private $id;
-
- /**
- * @Column
- */
- private $name;
-
- /**
- * @OneToOne(targetEntity="CmsEmployee")
- * @JoinColumn(name="spouse_id", referencedColumnName="id")
- */
- private $spouse;
-
- public function getId() {
- return $this->id;
- }
-
- public function getName() {
- return $this->name;
- }
-
- public function getSpouse() {
- return $this->spouse;
- }
- }
-
|