From e736b9d6162f510e975af1c660a6346e1d162fd5 Mon Sep 17 00:00:00 2001 From: Olivier Bellone Date: Wed, 30 Oct 2019 13:00:13 -0700 Subject: [PATCH] Fix invalid PHPDoc --- lib/StripeClient.php | 2 +- lib/StripeClientInterface.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/StripeClient.php b/lib/StripeClient.php index 9dfad6885..bb4efa3d9 100644 --- a/lib/StripeClient.php +++ b/lib/StripeClient.php @@ -115,7 +115,7 @@ public function getFilesBase() * @param string $method The HTTP method. * @param string $path The path of the request. * @param array $params The parameters of the request. - * @param array|\Stripe\RequestOptions $opts The special modifiers of the request. + * @param array|\Stripe\Util\RequestOptions $opts The special modifiers of the request. * @return \Stripe\StripeObject The object returned by Stripe's API. */ public function request($method, $path, $params, $opts) diff --git a/lib/StripeClientInterface.php b/lib/StripeClientInterface.php index 977e456e3..dc794639a 100644 --- a/lib/StripeClientInterface.php +++ b/lib/StripeClientInterface.php @@ -48,7 +48,7 @@ public function getFilesBase(); * @param string $method The HTTP method. * @param string $path The path of the request. * @param array $params The parameters of the request. - * @param array|\Stripe\RequestOptions $opts The special modifiers of the request. + * @param array|\Stripe\Util\RequestOptions $opts The special modifiers of the request. * @return \Stripe\StripeObject The object returned by Stripe's API. */ public function request($method, $path, $params, $opts);