1 | <?php |
||
25 | class RemoteVetValidationCommand |
||
26 | { |
||
27 | /** |
||
28 | * The attribute matches |
||
29 | * |
||
30 | * @var AttributeMatchCollection |
||
31 | */ |
||
32 | public $matches = []; |
||
33 | |||
34 | /** |
||
35 | * Feedback for the attribute matching |
||
36 | * |
||
37 | * @var FeedbackCollection |
||
38 | */ |
||
39 | public $feedback = []; |
||
40 | |||
41 | public function __construct(AttributeMatchCollection $matches, FeedbackCollection $feedback) |
||
46 | } |
||
47 |