Issues (9)

config/danarewa.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
    'base_url' => env('DANAREWA_BASE_URL', 'https://danarewatech.com.ng/api'),
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
    'base_url' => /** @scrutinizer ignore-call */ env('DANAREWA_BASE_URL', 'https://danarewatech.com.ng/api'),
Loading history...
5
    'api_key' => env('DANAREWA_API_KEY'),
6
];
7