| 1 | <?php |
||
| 25 | class RemoteVetValidationCommand |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * The attribute matches |
||
| 29 | * |
||
| 30 | * @var AttributeMatchCollection |
||
| 31 | */ |
||
| 32 | public $matches = []; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Should the attributes considered to be valid |
||
| 36 | * |
||
| 37 | * @Assert\NotBlank() |
||
| 38 | * @Assert\Type(type="bool") |
||
| 39 | * |
||
| 40 | * @var bool |
||
| 41 | */ |
||
| 42 | public $valid = false; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Feedback for the attribute matching |
||
| 46 | * |
||
| 47 | * @var FeedbackCollection |
||
| 48 | */ |
||
| 49 | public $feedback = []; |
||
| 50 | |||
| 51 | public function __construct(AttributeMatchCollection $matches, FeedbackCollection $feedback){ |
||
| 55 | } |
||
| 56 |