| 1 | <?php |
||
| 7 | class DtoEvent |
||
| 8 | { |
||
| 9 | private $user; |
||
| 10 | |||
| 11 | private $summary; |
||
| 12 | |||
| 13 | private $description; |
||
| 14 | |||
| 15 | private $location; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var |
||
| 19 | * @Assert\NotBlank() |
||
| 20 | */ |
||
| 21 | private $start; |
||
| 22 | /** |
||
| 23 | * @var |
||
| 24 | * @Assert\NotBlank() |
||
| 25 | */ |
||
| 26 | private $end; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | public function getSummary() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param mixed $summary |
||
| 38 | */ |
||
| 39 | public function setSummary($summary) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return mixed |
||
| 46 | */ |
||
| 47 | public function getDescription() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param mixed $description |
||
| 54 | */ |
||
| 55 | public function setDescription($description) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return mixed |
||
| 62 | */ |
||
| 63 | public function getLocation() |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @param mixed $location |
||
| 70 | */ |
||
| 71 | public function setLocation($location) |
||
| 75 | |||
| 76 | /** |
||
| 77 | * @return mixed |
||
| 78 | */ |
||
| 79 | public function getStart() |
||
| 83 | |||
| 84 | /** |
||
| 85 | * @param mixed $start |
||
| 86 | */ |
||
| 87 | public function setStart($start) |
||
| 91 | |||
| 92 | /** |
||
| 93 | * @return mixed |
||
| 94 | */ |
||
| 95 | public function getEnd() |
||
| 99 | |||
| 100 | /** |
||
| 101 | * @param mixed $end |
||
| 102 | */ |
||
| 103 | public function setEnd($end) |
||
| 107 | |||
| 108 | /** |
||
| 109 | * @return mixed |
||
| 110 | */ |
||
| 111 | public function getUser() |
||
| 115 | |||
| 116 | /** |
||
| 117 | * @param mixed $user |
||
| 118 | * |
||
| 119 | * @return $this |
||
| 120 | */ |
||
| 121 | public function setUser($user) |
||
| 127 | |||
| 128 | } |
||
| 129 |