Issues (8)

config/payvessel.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
    'api_key' => env('PAYVESSEL_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
    'api_key' => /** @scrutinizer ignore-call */ env('PAYVESSEL_API_KEY'),
Loading history...
5
    'api_secret' => env('PAYVESSEL_API_SECRET'),
6
    'business_id' => env('BUSINESS_ID'),
7
    'base_url' => env('PAYVESSEL_API_URL', 'https://api.payvessel.com'),
8
];
9