diff --git a/src/Omnipay/Common/Message/FetchIssuersResponseInterface.php b/src/Omnipay/Common/Message/FetchIssuersResponseInterface.php index 48fe6f8e..0428d637 100644 --- a/src/Omnipay/Common/Message/FetchIssuersResponseInterface.php +++ b/src/Omnipay/Common/Message/FetchIssuersResponseInterface.php @@ -12,7 +12,7 @@ interface FetchIssuersResponseInterface extends ResponseInterface * * These represent banks which the user must choose between. * - * @return array An array of \Omnipay\Common\Issuer objects + * @return \Omnipay\Common\Issuer[] */ public function getIssuers(); } diff --git a/src/Omnipay/Common/Message/FetchPaymentMethodsResponseInterface.php b/src/Omnipay/Common/Message/FetchPaymentMethodsResponseInterface.php index 0fe1edaf..e9e410f9 100644 --- a/src/Omnipay/Common/Message/FetchPaymentMethodsResponseInterface.php +++ b/src/Omnipay/Common/Message/FetchPaymentMethodsResponseInterface.php @@ -12,7 +12,7 @@ interface FetchPaymentMethodsResponseInterface extends ResponseInterface * * These represent separate payment methods which the user must choose between. * - * @return array An array of \Omnipay\Common\PaymentMethod objects + * @return \Omnipay\Common\PaymentMethod[] */ public function getPaymentMethods(); }