diff options
author | Valentin Popov <info@valentineus.link> | 2017-10-25 08:25:54 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-10-25 08:25:54 +0300 |
commit | 2422592c743aca1163eacc31f4faccbb5d4661f8 (patch) | |
tree | 2f1bdb9d378986417cf812467c18d899aca834f6 | |
parent | d235d49dc6214ff916f0f5177d27a0cdd4685ec3 (diff) | |
download | local_webhooks-2422592c743aca1163eacc31f4faccbb5d4661f8.tar.xz local_webhooks-2422592c743aca1163eacc31f4faccbb5d4661f8.zip |
Correcting the style of the code
-rw-r--r-- | classes/curl.php | 17 | ||||
-rw-r--r-- | classes/forms.php | 1 |
2 files changed, 10 insertions, 8 deletions
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); diff --git a/classes/forms.php b/classes/forms.php index c232a7b..c95b280 100644 --- a/classes/forms.php +++ b/classes/forms.php @@ -27,6 +27,7 @@ namespace local_webhooks; defined("MOODLE_INTERNAL") || die(); require_once($CFG->libdir . "/formslib.php"); + use lang_string; use moodleform; |