PHP code example of dlimars / credit-card-returns

1. Go to this page and download the library: Download dlimars/credit-card-returns library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dlimars / credit-card-returns example snippets


    REDE    CIELO   ELAVON   STONE   MASTERCARD   MERCADO_PAGO

    

    rs\CreditCardReturns\Acquirers\Cielo;

    $cielo = (new Cielo())->getMessageByCode(51)->getMessage();
    // Irá exibir "Saldo insuficiente"

    // para utilizar as demais adquirentes:
    use Dlimars\CreditCardReturns\Acquirers\Stone;
    use Dlimars\CreditCardReturns\Acquirers\RedeCard;
    use Dlimars\CreditCardReturns\Acquirers\Elavon;

    $stone  = (new Stone())->getMessageByCode(51)->getMessage();
    $rede   = (new RedeCard())->getMessageByCode(51)->getMessage();
    $elavon = (new Elavon())->getMessageByCode(51)->getMessage();