mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-16 21:17:14 +01:00
18 lines
325 B
PHP
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 = []);
|
||
|
}
|