PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
Gateway
/
Contracts
<?php namespace Modules\Gateway\Contracts; interface HasDataResponseInterface { /** * Every method should return json_encoded array */ /** * Returns raw response provided by the gateway */ public function getRawResponse(): string; /** * Returns array of formatted response * * array([ * 'amount' => 1234 * 'currency' => 'usd' * ]) */ public function getResponse(): string; }
[+]
..
[-] RequiresCallbackInterface.php
[edit]
[-] RequiresWebHookValidationInterface.php
[edit]
[-] RequiresCancelInterface.php
[edit]
[-] CryptoResponseInterface.php
[edit]
[-] HasDataResponseInterface.php
[edit]
[-] PaymentViewInterface.php
[edit]
[-] PaymentProcessorInterface.php
[edit]