| 1 | <?php |
||
| 7 | class DtoEvent |
||
| 8 | { |
||
| 9 | private $summary; |
||
| 10 | |||
| 11 | private $description; |
||
| 12 | |||
| 13 | private $location; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var |
||
| 17 | * @Assert\NotBlank() |
||
| 18 | */ |
||
| 19 | private $start; |
||
| 20 | /** |
||
| 21 | * @var |
||
| 22 | * @Assert\NotBlank() |
||
| 23 | */ |
||
| 24 | private $end; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | public function getSummary() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param mixed $summary |
||
| 36 | */ |
||
| 37 | public function setSummary($summary) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return mixed |
||
| 44 | */ |
||
| 45 | public function getDescription() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param mixed $description |
||
| 52 | */ |
||
| 53 | public function setDescription($description) |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @return mixed |
||
| 60 | */ |
||
| 61 | public function getLocation() |
||
| 65 | |||
| 66 | /** |
||
| 67 | * @param mixed $location |
||
| 68 | */ |
||
| 69 | public function setLocation($location) |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @return mixed |
||
| 76 | */ |
||
| 77 | public function getStart() |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @param mixed $start |
||
| 84 | */ |
||
| 85 | public function setStart($start) |
||
| 89 | |||
| 90 | /** |
||
| 91 | * @return mixed |
||
| 92 | */ |
||
| 93 | public function getEnd() |
||
| 97 | |||
| 98 | /** |
||
| 99 | * @param mixed $end |
||
| 100 | */ |
||
| 101 | public function setEnd($end) |
||
| 105 | } |
||
| 106 |