1 | <?php |
||
5 | class TestEntity |
||
6 | { |
||
7 | private $firstProperty; |
||
8 | |||
9 | private $secondProperty; |
||
10 | |||
11 | private $firstAssociation; |
||
12 | |||
13 | public function getFirstProperty() |
||
17 | |||
18 | public function setFirstProperty($firstProperty) |
||
22 | |||
23 | public function getSecondProperty() |
||
27 | |||
28 | public function setSecondProperty($secondProperty) |
||
32 | |||
33 | public function getFirstAssociation() |
||
37 | |||
38 | public function setFirstAssociation($firstAssociation) |
||
42 | |||
43 | } |
||
44 |