Skip to content

Commit fb30e55

Browse files
committed
fix to work correctly (since it's boolean)
1 parent 7d55808 commit fb30e55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CustomerProfiles/get-customer-payment-profile-list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function getCustomerPaymentProfileList()
2525
//Setting the sorting
2626
$sorting = new AnetAPI\CustomerPaymentProfileSortingType();
2727
$sorting->setOrderBy("id");
28-
$sorting->setOrderDescending("false");
28+
$sorting->setOrderDescending(false);
2929

3030
//Creating the request with the required parameters
3131
$request = new AnetAPI\GetCustomerPaymentProfileListRequest();

0 commit comments

Comments
 (0)