Issues (16)

config/confirmident.php (1 issue)

Labels
Severity
1
<?php
2
3
4
/**
5
 * Confirmident's Identity Verification laravel package
6
 * @author Hope Ezenwa- Hopekell <[email protected]>
7
 * @version 1
8
 **/
9
10
return [
11
    'api_key' => env('CONFIRMIDENT_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

11
    'api_key' => /** @scrutinizer ignore-call */ env('CONFIRMIDENT_API_KEY', ''),
Loading history...
12
    'base_url' => env('CONFIRMIDENT_API_BASE_URL', 'https://confirmident.com.ng/api'),
13
];