1 | <?php |
||
34 | class FraudScreeningData extends WsMessageUtility |
||
35 | { |
||
36 | /** |
||
37 | * @var FraudScreening |
||
38 | */ |
||
39 | public $fraudScreening; |
||
40 | |||
41 | /** |
||
42 | * @var IpAdress |
||
43 | */ |
||
44 | public $ipAdress; |
||
45 | |||
46 | /** |
||
47 | * @var MerchantUrl |
||
48 | */ |
||
49 | public $merchantURL; |
||
50 | |||
51 | /** |
||
52 | * @var PayerPhoneOrEmail[] |
||
53 | */ |
||
54 | public $payerPhoneOrEmail = []; |
||
55 | |||
56 | /** |
||
57 | * @var ShopperSession |
||
58 | */ |
||
59 | public $shopperSession; |
||
60 | |||
61 | /** |
||
62 | * @var PayerName |
||
63 | */ |
||
64 | public $payerName; |
||
65 | |||
66 | /** |
||
67 | * @var PayerDateOfBirth |
||
68 | */ |
||
69 | public $payerDateOfBirth; |
||
70 | |||
71 | /** |
||
72 | * @var BillingAddress |
||
73 | */ |
||
74 | public $billingAddress; |
||
75 | |||
76 | /** |
||
77 | * @var FormOfIdDetails[] |
||
78 | */ |
||
79 | public $formOfIdDetails = []; |
||
80 | |||
81 | /** |
||
82 | * @var TravelShopper |
||
83 | */ |
||
84 | public $travelShopper; |
||
85 | |||
86 | /** |
||
87 | * @var ShopperDetails |
||
88 | */ |
||
89 | public $shopperDetails; |
||
90 | |||
91 | /** |
||
92 | * @var SecurityCode[] |
||
93 | */ |
||
94 | public $securityCode = []; |
||
95 | |||
96 | /** |
||
97 | * FraudScreeningData constructor. |
||
98 | * |
||
99 | * @param FraudScreeningOptions $options |
||
100 | */ |
||
101 | public function __construct(FraudScreeningOptions $options) |
||
121 | } |
||
122 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..