From 2543eefe86819a85127c21af30aa55604eb34b22 Mon Sep 17 00:00:00 2001 From: Krishan Koenig Date: Wed, 17 Jul 2024 23:57:13 +0200 Subject: [PATCH] wip --- src/Endpoints/MethodIssuerEndpoint.php | 1 + src/Endpoints/SubscriptionPaymentEndpoint.php | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Endpoints/MethodIssuerEndpoint.php b/src/Endpoints/MethodIssuerEndpoint.php index 61947a44..ad90f4aa 100644 --- a/src/Endpoints/MethodIssuerEndpoint.php +++ b/src/Endpoints/MethodIssuerEndpoint.php @@ -40,6 +40,7 @@ public function enable(string $profileId, string $methodId, string $issuerId) $this->methodId = $methodId; $this->issuerId = $issuerId; + /** @var Issuer */ $response = $this->createResource([], []); $this->resetResourceIds(); diff --git a/src/Endpoints/SubscriptionPaymentEndpoint.php b/src/Endpoints/SubscriptionPaymentEndpoint.php index cf870e05..92485a0e 100644 --- a/src/Endpoints/SubscriptionPaymentEndpoint.php +++ b/src/Endpoints/SubscriptionPaymentEndpoint.php @@ -57,6 +57,7 @@ public function pageForIds( $this->customerId = $customerId; $this->subscriptionId = $subscriptionId; + /** @var PaymentCollection */ return $this->fetchCollection($from, $limit, $parameters); }