@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * @param AuthorizeNetCustomer $customerProfile |
52 | 52 | * @param string $validationMode |
53 | 53 | * |
54 | - * @return AuthorizeNetCIM_Response |
|
54 | + * @return AuthorizeNetARB_Response |
|
55 | 55 | */ |
56 | 56 | public function createCustomerProfile($customerProfile, $validationMode = "none") |
57 | 57 | { |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * @param AuthorizeNetPaymentProfile $paymentProfile |
70 | 70 | * @param string $validationMode |
71 | 71 | * |
72 | - * @return AuthorizeNetCIM_Response |
|
72 | + * @return AuthorizeNetARB_Response |
|
73 | 73 | */ |
74 | 74 | public function createCustomerPaymentProfile($customerProfileId, $paymentProfile, $validationMode = "none") |
75 | 75 | { |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @param int $customerProfileId |
88 | 88 | * @param AuthorizeNetAddress $shippingAddress |
89 | 89 | * |
90 | - * @return AuthorizeNetCIM_Response |
|
90 | + * @return AuthorizeNetARB_Response |
|
91 | 91 | */ |
92 | 92 | public function createCustomerShippingAddress($customerProfileId, $shippingAddress) |
93 | 93 | { |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | * @param AuthorizeNetTransaction $transaction |
106 | 106 | * @param string $extraOptionsString |
107 | 107 | * |
108 | - * @return AuthorizeNetCIM_Response |
|
108 | + * @return AuthorizeNetARB_Response |
|
109 | 109 | */ |
110 | 110 | public function createCustomerProfileTransaction($transactionType, $transaction, $extraOptionsString = "") |
111 | 111 | { |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | * |
123 | 123 | * @param int $customerProfileId |
124 | 124 | * |
125 | - * @return AuthorizeNetCIM_Response |
|
125 | + * @return AuthorizeNetARB_Response |
|
126 | 126 | */ |
127 | 127 | public function deleteCustomerProfile($customerProfileId) |
128 | 128 | { |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * @param int $customerProfileId |
138 | 138 | * @param int $customerPaymentProfileId |
139 | 139 | * |
140 | - * @return AuthorizeNetCIM_Response |
|
140 | + * @return AuthorizeNetARB_Response |
|
141 | 141 | */ |
142 | 142 | public function deleteCustomerPaymentProfile($customerProfileId, $customerPaymentProfileId) |
143 | 143 | { |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | * @param int $customerProfileId |
154 | 154 | * @param int $customerAddressId |
155 | 155 | * |
156 | - * @return AuthorizeNetCIM_Response |
|
156 | + * @return AuthorizeNetARB_Response |
|
157 | 157 | */ |
158 | 158 | public function deleteCustomerShippingAddress($customerProfileId, $customerAddressId) |
159 | 159 | { |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | /** |
167 | 167 | * Get all customer profile ids. |
168 | 168 | * |
169 | - * @return AuthorizeNetCIM_Response |
|
169 | + * @return AuthorizeNetARB_Response |
|
170 | 170 | */ |
171 | 171 | public function getCustomerProfileIds() |
172 | 172 | { |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * |
180 | 180 | * @param int $customerProfileId |
181 | 181 | * |
182 | - * @return AuthorizeNetCIM_Response |
|
182 | + * @return AuthorizeNetARB_Response |
|
183 | 183 | */ |
184 | 184 | public function getCustomerProfile($customerProfileId, $unmaskExpirationDate = false, $includeIssuerInfo = false) |
185 | 185 | { |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | * @param int $customerPaymentProfileId |
203 | 203 | * @param boolean $unmaskExpirationDate |
204 | 204 | * |
205 | - * @return AuthorizeNetCIM_Response |
|
205 | + * @return AuthorizeNetARB_Response |
|
206 | 206 | */ |
207 | 207 | public function getCustomerPaymentProfile($customerProfileId, $customerPaymentProfileId, $unmaskExpirationDate = false, $includeIssuerInfo = false) |
208 | 208 | { |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | * @param int $customerProfileId |
226 | 226 | * @param int $customerAddressId |
227 | 227 | * |
228 | - * @return AuthorizeNetCIM_Response |
|
228 | + * @return AuthorizeNetARB_Response |
|
229 | 229 | */ |
230 | 230 | public function getCustomerShippingAddress($customerProfileId, $customerAddressId) |
231 | 231 | { |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | * @param int $customerProfileId |
242 | 242 | * @param AuthorizeNetCustomer $customerProfile |
243 | 243 | * |
244 | - * @return AuthorizeNetCIM_Response |
|
244 | + * @return AuthorizeNetARB_Response |
|
245 | 245 | */ |
246 | 246 | public function updateCustomerProfile($customerProfileId, $customerProfile) |
247 | 247 | { |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | * @param AuthorizeNetPaymentProfile $paymentProfile |
261 | 261 | * @param string $validationMode |
262 | 262 | * |
263 | - * @return AuthorizeNetCIM_Response |
|
263 | + * @return AuthorizeNetARB_Response |
|
264 | 264 | */ |
265 | 265 | public function updateCustomerPaymentProfile($customerProfileId, $customerPaymentProfileId, $paymentProfile, $validationMode = "none") |
266 | 266 | { |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | * @param int $customerShippingAddressId |
281 | 281 | * @param AuthorizeNetAddress $shippingAddress |
282 | 282 | * |
283 | - * @return AuthorizeNetCIM_Response |
|
283 | + * @return AuthorizeNetARB_Response |
|
284 | 284 | */ |
285 | 285 | public function updateCustomerShippingAddress($customerProfileId, $customerShippingAddressId, $shippingAddress) |
286 | 286 | { |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | * @param int $splitTenderId |
300 | 300 | * @param string $splitTenderStatus |
301 | 301 | * |
302 | - * @return AuthorizeNetCIM_Response |
|
302 | + * @return AuthorizeNetARB_Response |
|
303 | 303 | */ |
304 | 304 | public function updateSplitTenderGroup($splitTenderId, $splitTenderStatus) |
305 | 305 | { |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | * @param int $cardCode |
319 | 319 | * @param string $validationMode |
320 | 320 | * |
321 | - * @return AuthorizeNetCIM_Response |
|
321 | + * @return AuthorizeNetARB_Response |
|
322 | 322 | */ |
323 | 323 | public function validateCustomerPaymentProfile($customerProfileId, $customerPaymentProfileId, $customerShippingAddressId, $cardCode, $validationMode = "testMode") |
324 | 324 | { |
@@ -335,9 +335,9 @@ discard block |
||
335 | 335 | * Get hosted profile page request token |
336 | 336 | * |
337 | 337 | * @param string $customerProfileId |
338 | - * @param mixed $settings |
|
338 | + * @param integer $settings |
|
339 | 339 | * |
340 | - * @return AuthorizeNetCIM_Response |
|
340 | + * @return AuthorizeNetARB_Response |
|
341 | 341 | */ |
342 | 342 | public function getHostedProfilePageRequest($customerProfileId, $settings=0) |
343 | 343 | { |