Skip to content

Commit

Permalink
null defaults on constructor 4 for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
dmzoneill committed Apr 7, 2018
1 parent c750049 commit 8943fb1
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 @@ -137,7 +137,7 @@ private function __construct3( string $api_key = null, string $api_secret = null
* @param $proxyConf array config
* @return null
*/
private function __construct4( string $api_key = '', string $api_secret = '', array $options = ["useServerTime"=>false], array $proxyConf = null ) {
private function __construct4( string $api_key = null, string $api_secret = null, array $options = ["useServerTime"=>false], array $proxyConf = null ) {
$this->api_key = $api_key;
$this->api_secret = $api_secret;
$this->proxyConf = $proxyConf;
Expand Down

0 comments on commit 8943fb1

Please sign in to comment.