| 1 | <?php |
||
| 7 | class DtoEvent |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var Assert\NotBlank |
||
| 11 | */ |
||
| 12 | private $user; |
||
| 13 | |||
| 14 | private $summary; |
||
| 15 | |||
| 16 | private $description; |
||
| 17 | |||
| 18 | private $location; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var |
||
| 22 | * @Assert\NotBlank() |
||
| 23 | */ |
||
| 24 | private $start; |
||
| 25 | /** |
||
| 26 | * @var |
||
| 27 | * @Assert\NotBlank() |
||
| 28 | */ |
||
| 29 | private $end; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return mixed |
||
| 33 | */ |
||
| 34 | public function getSummary() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param mixed $summary |
||
| 41 | */ |
||
| 42 | public function setSummary($summary) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return mixed |
||
| 49 | */ |
||
| 50 | public function getDescription() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @param mixed $description |
||
| 57 | */ |
||
| 58 | public function setDescription($description) |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @return mixed |
||
| 65 | */ |
||
| 66 | public function getLocation() |
||
| 70 | |||
| 71 | /** |
||
| 72 | * @param mixed $location |
||
| 73 | */ |
||
| 74 | public function setLocation($location) |
||
| 78 | |||
| 79 | /** |
||
| 80 | * @return mixed |
||
| 81 | */ |
||
| 82 | public function getStart() |
||
| 86 | |||
| 87 | /** |
||
| 88 | * @param mixed $start |
||
| 89 | */ |
||
| 90 | public function setStart($start) |
||
| 94 | |||
| 95 | /** |
||
| 96 | * @return mixed |
||
| 97 | */ |
||
| 98 | public function getEnd() |
||
| 102 | |||
| 103 | /** |
||
| 104 | * @param mixed $end |
||
| 105 | */ |
||
| 106 | public function setEnd($end) |
||
| 110 | |||
| 111 | /** |
||
| 112 | * @return mixed |
||
| 113 | */ |
||
| 114 | public function getUser() |
||
| 118 | |||
| 119 | /** |
||
| 120 | * @param mixed $user |
||
| 121 | * |
||
| 122 | * @return $this |
||
| 123 | */ |
||
| 124 | public function setUser($user) |
||
| 130 | } |
||
| 131 |