OpenXE/classes/Modules/Hubspot/Interfaces/HubspotHttpClientInterface.php
2021-05-21 08:49:41 +02:00

18 lines
325 B
PHP

<?php
namespace Xentral\Modules\Hubspot\Interfaces;
interface HubspotHttpClientInterface
{
const GET_REQUEST = 'GET';
const POST_REQUEST = 'POST';
const DELETE_REQUEST = 'DELETE';
const PATCH_REQUEST = 'PATCH';
const PUT_REQUEST = 'PUT';
//public function get($url, $data = [], $header = []);
}