Issues (7)

config/tatum.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
    'account_id' => env('TATUM_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

4
    'account_id' => /** @scrutinizer ignore-call */ env('TATUM_API_KEY'),
Loading history...
5
    'api_key' => env('TATUM_API_KEY'),
6
];
7