Coregdae service

This commit is contained in:
Olu Amey
2021-09-25 23:59:07 -04:00
parent 645ef8e101
commit 17dd1f2add
5 changed files with 55 additions and 98 deletions
+20
View File
@@ -0,0 +1,20 @@
<?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 [];
}
}