PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
vendor
/
omnipay
/
common
/
src
/
Common
/
Message
<?php /** * Fetch Payment Methods Response interface */ namespace Omnipay\Common\Message; /** * Fetch Payment Methods Response interface * * This interface class defines the functionality of a response * that is a "fetch payment method" response. It extends the ResponseInterface * interface class with some extra functions relating to the * specifics of a response to fetch the payment method from the gateway. * This happens when the gateway needs the customer to choose a * payment method. * */ interface FetchPaymentMethodsResponseInterface extends ResponseInterface { /** * Get the returned list of payment methods. * * These represent separate payment methods which the user must choose between. * * @return \Omnipay\Common\PaymentMethod[] */ public function getPaymentMethods(); }
[+]
..
[-] FetchIssuersResponseInterface.php
[edit]
[-] NotificationInterface.php
[edit]
[-] ResponseInterface.php
[edit]
[-] RequestInterface.php
[edit]
[-] AbstractRequest.php
[edit]
[-] FetchPaymentMethodsResponseInterface.php
[edit]
[-] MessageInterface.php
[edit]
[-] AbstractResponse.php
[edit]
[-] RedirectResponseInterface.php
[edit]