X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fthird_party%2Fapi%2Fwernisportal%2Fclass_WernisApi.php;h=cc81fe7394ba059a64f78b5c6d7f74e20b6c0d7b;hp=c64fba3e7b7260a405c5c5d99187a2cc144f61aa;hb=146c8b3c929a1b0ab17d6605e5ae949ac44899c1;hpb=d5dc929cca6a35725ff7af3446e2764e6c739d81 diff --git a/framework/main/third_party/api/wernisportal/class_WernisApi.php b/framework/main/third_party/api/wernisportal/class_WernisApi.php index c64fba3e..cc81fe73 100644 --- a/framework/main/third_party/api/wernisportal/class_WernisApi.php +++ b/framework/main/third_party/api/wernisportal/class_WernisApi.php @@ -32,7 +32,7 @@ class WernisApi extends BaseFrameworkSystem { /** * Static base API URL */ - private static $apiUrl = 'http://www.wds66.com/api/'; + private static $apiUrl = 'https://www.wds66.com/api/'; /** * API Wernis amount @@ -216,7 +216,7 @@ class WernisApi extends BaseFrameworkSystem { $response = $this->sendRawRequest($requestString); // Check the response header if all is fine - if (strpos($response[0], '200') === FALSE) { + if (strpos($response[0], '200') === false) { // Something bad happend... :( return array( 'status' => 'request_error', @@ -309,7 +309,7 @@ class WernisApi extends BaseFrameworkSystem { // Widthdraw this amount private function executeWithdraw ($amount) { // First all fails... - $result = FALSE; + $result = false; // Prepare the purpose $purpose = "\"Bube oder Dame\"-Einsatz gesetzt."; @@ -329,7 +329,7 @@ class WernisApi extends BaseFrameworkSystem { if ($return['status'] == $this->statusOkay) { // All fine! - $result = TRUE; + $result = true; } else { // Status failture text $this->setStatusMessage($return['message'], $return['status']); @@ -342,7 +342,7 @@ class WernisApi extends BaseFrameworkSystem { // Payout this amount private function executePayout ($amount) { // First all fails... - $result = FALSE; + $result = false; // Prepare the purpose $purpose = "\"Bube oder Dame\"-Gewinn erhalten."; @@ -362,7 +362,7 @@ class WernisApi extends BaseFrameworkSystem { if ($return['status'] == $this->statusOkay) { // All fine! - $result = TRUE; + $result = true; } else { // Status failture text $this->setStatusMessage($return['message'], $return['status']);