mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
15 lines
376 B
PHP
15 lines
376 B
PHP
<?php
|
|
|
|
use Voucherify\VoucherifyClient;
|
|
use Voucherify\ClientException;
|
|
|
|
function createVoucherifyClient()
|
|
{
|
|
$apiID = config('voucherify.application_id');
|
|
$apiKey = config('voucherify.client_secret_key');
|
|
$apiVersion = config('voucherify.version');
|
|
$apiUrl = config('voucherify.url');
|
|
|
|
return new VoucherifyClient($apiID, $apiKey, $apiVersion, $apiUrl);
|
|
}
|