efipay/sdk-php-apis-efi

View on GitHub
src/Efi/Endpoints/Config.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
 
$charges = include __DIR__ . '/Charges.php';
$pix = include __DIR__ . '/Pix.php';
$openFinance = include __DIR__ . '/OpenFinance.php';
$payments = include __DIR__ . '/Payments.php';
$openingAccounts = include __DIR__ . '/OpeningAccounts.php';
$statements = include __DIR__ . '/Statements.php';
 
return [
"APIs" => [
"CHARGES" => $charges,
"PIX" => $pix,
"OPEN-FINANCE" => $openFinance,
"PAYMENTS" => $payments,
"OPENING-ACCOUNTS" => $openingAccounts,
"STATEMENTS" => $statements,
]
];