| 1 | <?php |
||
| 71 | class DDC2780Project |
||
| 72 | { |
||
| 73 | /** @Id @Column(type="integer") @GeneratedValue */ |
||
| 74 | public $id; |
||
| 75 | |||
| 76 | /** |
||
| 77 | * @OneToMany(targetEntity="DDC2780User", mappedBy="project") |
||
| 78 | * |
||
| 79 | * @var DDC2780User[] |
||
| 80 | */ |
||
| 81 | public $users; |
||
| 82 | |||
| 83 | /** Constructor */ |
||
| 84 | public function __construct() |
||
| 88 | } |
||
| 89 | |||
| 90 |