1 | <?php |
||
9 | class SimpleTestEntity |
||
10 | { |
||
11 | /** @var string $id */ |
||
12 | private $id; |
||
13 | |||
14 | /** @var string $colorName */ |
||
15 | private $colorName; |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public function getId() |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getColorName() |
||
32 | |||
33 | /** |
||
34 | * @param string $colorName |
||
35 | * @return SimpleTestEntity |
||
36 | */ |
||
37 | public function setColorName($colorName) |
||
42 | |||
43 | /** |
||
44 | * @param string $id |
||
45 | * @return SimpleTestEntity |
||
46 | */ |
||
47 | public function setId($id) |
||
52 | } |