|
2 | 2 |
|
3 | 3 | class MplusQAPIclient |
4 | 4 | { |
5 | | - const CLIENT_VERSION = '1.34.5'; |
| 5 | + const CLIENT_VERSION = '1.34.6'; |
6 | 6 | const WSDL_TTL = 300; |
7 | 7 |
|
8 | 8 | var $MIN_API_VERSION_MAJOR = 0; |
@@ -3912,7 +3912,7 @@ protected function validateCardType($cardType) { |
3912 | 3912 | } |
3913 | 3913 |
|
3914 | 3914 | //---------------------------------------------------------------------------- |
3915 | | - public function getOverview($cardType, $categoryId = 0, $selectFields, $pageNumber = null, $maxPerPage = null, $orderField = null, $sortOrder = null, $filters = null, $search = null, $retrieveImageList = null, $attempts = 0) { |
| 3915 | + public function getOverview($cardType, $categoryId = 0, $selectFields = array(), $pageNumber = null, $maxPerPage = null, $orderField = null, $sortOrder = null, $filters = null, $search = null, $retrieveImageList = null, $attempts = 0) { |
3916 | 3916 | try { |
3917 | 3917 | $this->validateCardType($cardType); |
3918 | 3918 | $request = $this->parser->convertGetOverviewRequest($cardType, $categoryId, $selectFields, $pageNumber, $maxPerPage, $orderField, $sortOrder, $filters, $search, $retrieveImageList); |
@@ -3961,7 +3961,7 @@ public function getOverviewFields($cardType, $categoryId = 0, $attempts = 0) { |
3961 | 3961 | // END getOverviewFields() |
3962 | 3962 |
|
3963 | 3963 | //---------------------------------------------------------------------------- |
3964 | | - public function updateBatch($cardType, $categoryId = 0, $numbers, $fields, $attempts = 0) { |
| 3964 | + public function updateBatch($cardType, $categoryId = 0, $numbers = array(), $fields = array(), $attempts = 0) { |
3965 | 3965 | try { |
3966 | 3966 | $this->validateCardType($cardType); |
3967 | 3967 | $request = $this->parser->convertUpdateBatchRequest($cardType, $categoryId, $numbers, $fields); |
|
0 commit comments