1 | <?php |
||
20 | class Picture extends Entity |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $picture = ''; |
||
26 | |||
27 | /** |
||
28 | * Get Picture |
||
29 | * |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getPicture() |
||
41 | |||
42 | /** |
||
43 | * Set Picture |
||
44 | * |
||
45 | * @param string $picture |
||
46 | * |
||
47 | * @return Picture |
||
48 | */ |
||
49 | public function setPicture($picture) |
||
54 | } |
||
55 |