20 lines
436 B
PHP
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 [];
|
|
}
|
|
} |