diff --git a/php-binance-api.php b/php-binance-api.php index 61100b7b..c2786f23 100644 --- a/php-binance-api.php +++ b/php-binance-api.php @@ -123,7 +123,7 @@ private function setupApiConfigFromFile(string $file = null) return; } if (file_exists($file) === false) { - die( "Unable to load config from: " . $file . PHP_EOL ); + die("Unable to load config from: " . $file . PHP_EOL); } $contents = json_decode(file_get_contents($file), true); $this->api_key = isset($contents['api-key']) ? $contents['api-key'] : ""; @@ -146,7 +146,7 @@ private function setupCurlOptsFromFile(string $file = null) return; } if (file_exists($file) === false) { - die( "Unable to load config from: " . $file . PHP_EOL ); + die("Unable to load config from: " . $file . PHP_EOL); } $contents = json_decode(file_get_contents($file), true); $this->curlOpts = isset($contents['curlOpts']) && is_array($contents['curlOpts']) ? $contents['curlOpts'] : []; @@ -167,7 +167,7 @@ private function setupProxyConfigFromFile(string $file = null) return; } if (file_exists($file) === false) { - die( "Unable to load config from: " . $file . PHP_EOL ); + die("Unable to load config from: " . $file . PHP_EOL); } $contents = json_decode(file_get_contents($file), true); if (isset($contents['proto']) === false) {