Refactoring the code to work with events

This commit is contained in:
Valentin Popov 2017-10-26 17:34:34 +04:00
parent 6c4e47b395
commit a7e41f77d2

View File

@ -99,12 +99,9 @@ class events {
* @param object $callback * @param object $callback
*/ */
private static function send($data, $callback) { private static function send($data, $callback) {
$package = json_encode($data);
$curl = new curl(); $curl = new curl();
$curl->setHeader(array("Content-Type: application/$callback->type")); $curl->setHeader(array("Content-Type: application/$callback->type"));
$curl->post($callback->url, $package); $curl->post($callback->url, json_encode($data));
return $curl->getResponse(); return $curl->getResponse();
} }
} }