/home/techb158/immovalet.com/platform/plugins/payment/helpers
Edit: /home/techb158/immovalet.com/platform/plugins/payment/helpers/helpers.php (1503B)
payment_channel->getServiceClass();
if ($paymentService && class_exists($paymentService)) {
if (method_exists($paymentService, 'getSupportRefundOnline')) {
$isSupportRefund = (new $paymentService)->getSupportRefundOnline();
return $isSupportRefund ? $paymentService : false;
}
}
return false;
}
}