| 1 | <?php |
||
| 11 | class CreateBand |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | * @Assert\NotBlank(message="Parameter is mandatory: name.") |
||
| 16 | */ |
||
| 17 | public $name; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | * @Assert\NotBlank(message="Parameter is mandatory: description.") |
||
| 22 | */ |
||
| 23 | public $description; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var string[] |
||
| 27 | * @Assert\NotBlank(message="Parameter is mandatory: members.") |
||
| 28 | */ |
||
| 29 | public $members; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @Assert\Callback |
||
| 33 | */ |
||
| 34 | public function validate(ExecutionContextInterface $context) |
||
| 42 | } |
||
| 43 |