1 | <?php |
||
8 | abstract class Api |
||
9 | { |
||
10 | protected $endpointUrl = null; |
||
11 | protected $useStreaming = false; |
||
12 | |||
13 | 27 | public function setWebhookEndpoint($endpointUrl = null) |
|
18 | |||
19 | 3 | public function enableStreaming() |
|
23 | |||
24 | 27 | private static function validateUrl($url) |
|
38 | |||
39 | 18 | protected static function call($url, $client) |
|
56 | } |
||
57 |