Skip to content

Commit

Permalink
fix run variable undefined $api by mxgrim
Browse files Browse the repository at this point in the history
  • Loading branch information
jaggedsoft authored Oct 28, 2020
2 parents 3694d1f + 75b10c4 commit fed6bf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php-binance-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -2344,7 +2344,7 @@ protected function downloadCurlCaBundle()
$output_filename = getcwd() . "/ca.pem";

if (is_writable(getcwd()) === false) {
die(getcwd() . " folder is not writeable, please check your permissions to download CA Certificates, or use $api->caOverride = true;");
die(getcwd() . ' folder is not writeable, please check your permissions to download CA Certificates, or use $api->caOverride = true;');
}

$host = "https://curl.haxx.se/ca/cacert.pem";
Expand Down

0 comments on commit fed6bf0

Please sign in to comment.