Issues (16)

config/laravel_crypto_stats.php (1 issue)

Labels
Severity
1
<?php
2
3
/**
4
 * Config params for the LaravelCryptoStats library.
5
 */
6
7
return [
8
9
    /*
10
     * Default cryptocurrencies which user want to use in the application
11
     */
12
    'currencies' => [
13
        'ETH',
14
        'LTC',
15
        'BTC',
16
    ],
17
18
    /*
19
     * API key for Etherscan connection
20
     */
21
    'etherscan_api_key' => env('ETHERSCAN_API_KEY'),
0 ignored issues
show
The function env was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

21
    'etherscan_api_key' => /** @scrutinizer ignore-call */ env('ETHERSCAN_API_KEY'),
Loading history...
22
];
23