Skip to content

Commit 32fdcef

Browse files
20200611 deployment
1 parent 5be91d2 commit 32fdcef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Gateways/PayPlanConnector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ protected function mapUrl(RecurringBuilder $builder)
266266
if ($builder->transactionType === TransactionType::CREATE) {
267267
$paymentMethod = $builder->entity->paymentMethod instanceof Credit ? 'CreditCard' : 'ACH';
268268
} elseif ($builder->transactionType === TransactionType::EDIT) {
269-
$paymentMethod = str_replace($builder->entity->paymentType, ' ', '');
269+
$paymentMethod = str_replace(' ', '', $builder->entity->paymentType);
270270
}
271271
return sprintf(
272272
'%s%s%s',

0 commit comments

Comments
 (0)