Files
2021-09-25 23:59:07 -04:00

20 lines
436 B
PHP

<?php
namespace App\Services;
use GuzzleHttp\Client as HTTPClient;
class CoreGradeClient
{
public static function coreGradeWebApi($action, $inArr, $outArr)
{
/* $apiEndpointsUrl='';
$client = new HTTPClient();
$response = $client->request(
'GET',
"{$apiEndpointsUrl}/wordpress-data"
);
return json_decode($response->getBody());
*/
return [];
}
}