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); }