jaggedsoft / php-binance-api

PHP Binance API is an asynchronous PHP library for the Binance API designed to be easy to use. https://github.com/binance-exchange/php-binance-api
MIT License
610 stars 496 forks source link

How to hide warning of config file #483

Open nadir1122 opened 2 years ago

nadir1122 commented 2 years ago

Short Description:

This disturbs final output. How to hide this message?

Platform:

php version:

code

require 'vendor/autoload.php';
$binanceApi = new API();
    $exinfo = $binanceApi->exchangeInfo();
    $symbols = $exinfo["symbols"];

result

Unable to load config from: /.config/jaggedsoft/php-binance-api.json Detected no API KEY or SECRET, all signed requests will fail Unable to load config from: /.config/jaggedsoft/php-binance-api.json No proxies will be used Unable to load config from: /.config/jaggedsoft/php-binance-api.json No curl options will be set

thank you