@@ -116,21 +116,6 @@ public function getApps(): array
116
116
return $ this ->apps ;
117
117
}
118
118
119
- /**
120
- * @param string ...$appIds
121
- *
122
- * @return self
123
- *
124
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
125
- * https://github.com/apigee/apigee-client-php/issues/373
126
- */
127
- public function apps (string ...$ appIds ): self
128
- {
129
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setApps() instead. ' , E_USER_DEPRECATED );
130
-
131
- return $ this ->setApps (...$ appIds );
132
- }
133
-
134
119
/**
135
120
* @param string ...$appIds
136
121
*
@@ -151,21 +136,6 @@ public function getCurrencies(): array
151
136
return $ this ->currencies ;
152
137
}
153
138
154
- /**
155
- * @param string ...$currencyIds
156
- *
157
- * @return self
158
- *
159
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
160
- * https://github.com/apigee/apigee-client-php/issues/373
161
- */
162
- public function currencies (string ...$ currencyIds ): self
163
- {
164
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setCurrencies() instead. ' , E_USER_DEPRECATED );
165
-
166
- return $ this ->setCurrencies (...$ currencyIds );
167
- }
168
-
169
139
/**
170
140
* @param string ...$currencyIds
171
141
*
@@ -186,23 +156,6 @@ public function getCurrencyOption(): ?string
186
156
return $ this ->currencyOption ;
187
157
}
188
158
189
- /**
190
- * @param string|null $currencyOption
191
- *
192
- * @return self
193
- *
194
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
195
- * https://github.com/apigee/apigee-client-php/issues/373
196
- */
197
- public function currencyOption (?string $ currencyOption ): self
198
- {
199
- // This tweak allows to reset the previously configured currency option
200
- // by calling this method with an empty string or null.
201
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setCurrencyOption() instead. ' , E_USER_DEPRECATED );
202
-
203
- return $ this ->setCurrencyOption ($ currencyOption );
204
- }
205
-
206
159
/**
207
160
* @param string|null $currencyOption
208
161
*
@@ -217,21 +170,6 @@ public function setCurrencyOption(?string $currencyOption): self
217
170
return $ this ;
218
171
}
219
172
220
- /**
221
- * @param string ...$developerIds
222
- *
223
- * @return self
224
- *
225
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
226
- * https://github.com/apigee/apigee-client-php/issues/373
227
- */
228
- public function developers (string ...$ developerIds ): self
229
- {
230
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setDevelopers() instead. ' , E_USER_DEPRECATED );
231
-
232
- return $ this ->setDevelopers (...$ developerIds );
233
- }
234
-
235
173
/**
236
174
* @param string ...$developerIds
237
175
*
@@ -260,21 +198,6 @@ public function getApiPackages(): array
260
198
return $ this ->apiPackages ;
261
199
}
262
200
263
- /**
264
- * @param string ...$apiPackageIds
265
- *
266
- * @return self
267
- *
268
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
269
- * https://github.com/apigee/apigee-client-php/issues/373
270
- */
271
- public function apiPackages (string ...$ apiPackageIds ): self
272
- {
273
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setApiPackages() instead. ' , E_USER_DEPRECATED );
274
-
275
- return $ this ->setApiPackages (...$ apiPackageIds );
276
- }
277
-
278
201
/**
279
202
* @param string ...$apiPackageIds
280
203
*
@@ -295,21 +218,6 @@ public function getApiProducts(): array
295
218
return $ this ->apiProducts ;
296
219
}
297
220
298
- /**
299
- * @param string ...$apiProductIds
300
- *
301
- * @return self
302
- *
303
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
304
- * https://github.com/apigee/apigee-client-php/issues/373
305
- */
306
- public function apiProducts (string ...$ apiProductIds ): self
307
- {
308
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setApiProducts() instead. ' , E_USER_DEPRECATED );
309
-
310
- return $ this ->setApiProducts (...$ apiProductIds );
311
- }
312
-
313
221
/**
314
222
* @param string ...$apiProductIds
315
223
*
@@ -330,21 +238,6 @@ public function getPricingTypes(): array
330
238
return $ this ->pricingTypes ;
331
239
}
332
240
333
- /**
334
- * @param string ...$pricingTypes
335
- *
336
- * @return self
337
- *
338
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
339
- * https://github.com/apigee/apigee-client-php/issues/373
340
- */
341
- public function pricingTypes (string ...$ pricingTypes ): self
342
- {
343
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setPricingTypes() instead. ' , E_USER_DEPRECATED );
344
-
345
- return $ this ->setPricingTypes (...$ pricingTypes );
346
- }
347
-
348
241
/**
349
242
* @param string ...$pricingTypes
350
243
*
@@ -365,21 +258,6 @@ public function getRatePlanLevels(): array
365
258
return $ this ->ratePlanLevels ;
366
259
}
367
260
368
- /**
369
- * @param string ...$ratePlanLevels
370
- *
371
- * @return self
372
- *
373
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
374
- * https://github.com/apigee/apigee-client-php/issues/373
375
- */
376
- public function ratePlanLevels (string ...$ ratePlanLevels ): self
377
- {
378
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setRatePlanLevels() instead. ' , E_USER_DEPRECATED );
379
-
380
- return $ this ->setRatePlanLevels (...$ ratePlanLevels );
381
- }
382
-
383
261
/**
384
262
* @param string ...$ratePlanLevels
385
263
*
@@ -424,21 +302,6 @@ public function getShowTransactionType(): bool
424
302
return $ this ->showTransactionType ;
425
303
}
426
304
427
- /**
428
- * @param bool $show
429
- *
430
- * @return self
431
- *
432
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
433
- * https://github.com/apigee/apigee-client-php/issues/373
434
- */
435
- public function showRevenueSharePercentage (bool $ show ): self
436
- {
437
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setShowRevenueSharePercentage() instead. ' , E_USER_DEPRECATED );
438
-
439
- return $ this ->setShowRevenueSharePercentage ($ show );
440
- }
441
-
442
305
/**
443
306
* @param bool $show
444
307
*
@@ -451,21 +314,6 @@ public function setShowRevenueSharePercentage(bool $show): self
451
314
return $ this ;
452
315
}
453
316
454
- /**
455
- * @param bool $show
456
- *
457
- * @return self
458
- *
459
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
460
- * https://github.com/apigee/apigee-client-php/issues/373
461
- */
462
- public function showSummary (bool $ show ): self
463
- {
464
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setShowSummary() instead. ' , E_USER_DEPRECATED );
465
-
466
- return $ this ->setShowSummary ($ show );
467
- }
468
-
469
317
/**
470
318
* @param bool $show
471
319
*
@@ -478,21 +326,6 @@ public function setShowSummary(bool $show): self
478
326
return $ this ;
479
327
}
480
328
481
- /**
482
- * @param bool $show
483
- *
484
- * @return self
485
- *
486
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
487
- * https://github.com/apigee/apigee-client-php/issues/373
488
- */
489
- public function showTransactionDetail (bool $ show ): self
490
- {
491
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setShowTransactionDetail() instead. ' , E_USER_DEPRECATED );
492
-
493
- return $ this ->setShowTransactionDetail ($ show );
494
- }
495
-
496
329
/**
497
330
* @param bool $show
498
331
*
@@ -505,21 +338,6 @@ public function setShowTransactionDetail(bool $show): self
505
338
return $ this ;
506
339
}
507
340
508
- /**
509
- * @param bool $show
510
- *
511
- * @return self
512
- *
513
- * @deprecated in 3.0.7, will be removed in 4.0.0. No longer needed.
514
- * https://github.com/apigee/apigee-client-php/issues/373
515
- */
516
- public function showTransactionType (bool $ show ): self
517
- {
518
- trigger_error (__METHOD__ . ' is deprecated in 3.0.7, will be removed in 4.0.0: use setShowTransactionType() instead. ' , E_USER_DEPRECATED );
519
-
520
- return $ this ->setShowTransactionType ($ show );
521
- }
522
-
523
341
/**
524
342
* @param bool $show
525
343
*
0 commit comments