1 | <?php |
||
15 | class Poll |
||
16 | { |
||
17 | private $name; |
||
18 | |||
19 | private $event; |
||
20 | |||
21 | private $choices; |
||
22 | |||
23 | public function getName() |
||
27 | |||
28 | public function setName($name) |
||
32 | |||
33 | public function getEvent() |
||
37 | |||
38 | public function setEvent(Event $event) |
||
42 | |||
43 | public function getChoices() |
||
47 | |||
48 | public function setChoices($choices) |
||
52 | } |
||
53 |