From 2422592c743aca1163eacc31f4faccbb5d4661f8 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 25 Oct 2017 09:25:54 +0400 Subject: Correcting the style of the code --- classes/curl.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'classes/curl.php') diff --git a/classes/curl.php b/classes/curl.php index 7f44b38..b96367d 100644 --- a/classes/curl.php +++ b/classes/curl.php @@ -24,24 +24,25 @@ namespace local_webhooks; -defined('MOODLE_INTERNAL') || die(); +defined("MOODLE_INTERNAL") || die(); class curl { public function __construct() { - if (!function_exists('curl_init')) { - print_error('nocurl', 'mnet'); + if (!function_exists("curl_init")) { + print_error("nocurl", "mnet"); } } public static function request($url, $data) { $ch = curl_init($url); - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST'); + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); - curl_setopt($ch, CURLOPT_HTTPHEADER, array( - 'Content-Type: application/json', - 'Content-Length: ' . strlen($data)) - ); + curl_setopt($ch, CURLOPT_HTTPHEADER, + array( + "Content-Type: application/json", + "Content-Length: " . strlen($data)) + ); $result = curl_exec($ch); curl_close($ch); -- cgit v1.2.3