endpoint = $endpoint; $this->httpClient = $httpClient ?: new http_client(); } /** * @param array $data * @return bool|string * @throws Exception */ public function send_data(array $data) { $response = $this->httpClient->post($this->endpoint, $data); return $response; } }