mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
26 lines
557 B
PHP
26 lines
557 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Xentral\Modules\GoogleApi\Client;
|
|
|
|
use Xentral\Modules\GoogleApi\Data\GoogleAccountData;
|
|
|
|
interface GoolgeApiClientInterface
|
|
{
|
|
/**
|
|
* @return GoogleAccountData
|
|
*/
|
|
public function getAccount(): GoogleAccountData;
|
|
|
|
/**
|
|
* @param string $method
|
|
* @param string $uri
|
|
* @param array|null $data
|
|
* @param array|null $headers
|
|
*
|
|
* @return array
|
|
*/
|
|
public function sendRequest(string $method, string $uri, array $data = null, array $headers = []): array;
|
|
}
|