File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/common/src/Omnipay/Common/GatewayInterface.php
Back
<?php /** * Payment gateway interface */ namespace Omnipay\Common; /** * Payment gateway interface * * This interface class defines the standard functions that any * Omnipay gateway needs to define. * * @see AbstractGateway */ interface GatewayInterface { /** * Get gateway display name * * This can be used by carts to get the display name for each gateway. */ public function getName(); /** * Get gateway short name * * This name can be used with GatewayFactory as an alias of the gateway class, * to create new instances of this gateway. */ public function getShortName(); /** * Define gateway parameters, in the following format: * * array( * 'username' => '', // string variable * 'testMode' => false, // boolean variable * 'landingPage' => array('billing', 'login'), // enum variable, first item is default * ); */ public function getDefaultParameters(); /** * Initialize gateway with parameters */ public function initialize(array $parameters = array()); /** * Get all gateway parameters * * @return array */ public function getParameters(); }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings