Refactoring the code to work with events
This commit is contained in:
parent
6c4e47b395
commit
a7e41f77d2
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user