1 | <?php |
||
11 | class DDC5934BaseContract |
||
12 | { |
||
13 | /** |
||
14 | * @ORM\Id() |
||
15 | * @ORM\Column(name="id", type="integer") |
||
16 | * @ORM\GeneratedValue() |
||
17 | */ |
||
18 | public $id; |
||
19 | |||
20 | /** |
||
21 | * @var ArrayCollection |
||
22 | * |
||
23 | * @ORM\OneToMany(targetEntity="DDC5934Member", fetch="LAZY", mappedBy="contract") |
||
24 | */ |
||
25 | public $members; |
||
26 | |||
27 | public function __construct() |
||
31 | |||
32 | public static function loadMetadata($metadata) |
||
48 | } |
||
49 |