1 | <?php |
||
10 | class UpdateBandMemberDTO |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | * @Assert\NotBlank(message="Parameter 'short_description' is mandatory") |
||
15 | */ |
||
16 | private $shortDescription; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | public $description; |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getShortDescription() |
||
30 | |||
31 | public function setShortDescription(string $shortDescription) |
||
35 | } |
||
36 |