Issues (6)

config/whmcs.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
    'api_url' => env('YOUR_WHMCS_API_URL'),
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
    'api_url' => /** @scrutinizer ignore-call */ env('YOUR_WHMCS_API_URL'),
Loading history...
5
    'api_identifier' => env('YOUR_API_IDENTIFIER'),
6
    'api_secret' => env('YOUR_API_SECRET'),
7
];
8