X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FPayment.php;h=26a62af3a98ed9b43341a7cbc21fa4b41798ba55;hb=b53486458136e5ba1b17df44102d0ced3e4a5752;hp=6b599e0bf30563cdbc4ff2e789be9a8ac06dc201;hpb=28e89cfe338133861a2ab33e5314bc18f46687a4;p=civicrm-core.git diff --git a/CRM/Core/Payment.php b/CRM/Core/Payment.php index 6b599e0bf3..26a62af3a9 100644 --- a/CRM/Core/Payment.php +++ b/CRM/Core/Payment.php @@ -1674,8 +1674,7 @@ abstract class CRM_Core_Payment { * it is better to standardise to being here. * * @param int $invoiceId The ID to check. - * - * @param null $contributionID + * @param int|null $contributionID * If a contribution exists pass in the contribution ID. * * @return bool @@ -1693,8 +1692,8 @@ abstract class CRM_Core_Payment { /** * Get url for users to manage this recurring contribution for this processor. * - * @param int $entityID - * @param null $entity + * @param int|null $entityID + * @param string|null $entity * @param string $action * * @return string|null @@ -1724,6 +1723,10 @@ abstract class CRM_Core_Payment { } $url = 'civicrm/contribute/updaterecur'; break; + + default: + $url = ''; + break; } $userId = CRM_Core_Session::singleton()->get('userID');