| 1 | <?php |
||
| 16 | class DDC5934BaseContract |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @Id() |
||
| 20 | * @Column(name="id", type="integer") |
||
| 21 | * @GeneratedValue() |
||
| 22 | */ |
||
| 23 | public $id; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var ArrayCollection |
||
| 27 | * |
||
| 28 | * @ManyToMany(targetEntity="DDC5934Member", fetch="LAZY", inversedBy="contracts") |
||
| 29 | */ |
||
| 30 | public $members; |
||
| 31 | |||
| 32 | public function __construct() |
||
| 36 | |||
| 37 | public static function loadMetadata(ClassMetadata $metadata) |
||
| 53 | } |
||
| 54 |