Issues (46)

src/config/config.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
    'client_id' => env('BSECURE_CLIENT_ID', ''),
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
    'client_id' => /** @scrutinizer ignore-call */ env('BSECURE_CLIENT_ID', ''),
Loading history...
5
    'integration_type' => env('BSECURE_INTEGRATION_TYPE','sandbox'), //use 'production' for live orders and 'sandbox' for testing orders. When left empty or `null` the sandbox environment will be used
6
    'store_slug' => env('BSECURE_STORE_SLUG'),   //If store id is not mentioned your orders will be marked against your default store
7
    'merchant_id' => env('BSECURE_MERCHANT_ID'),   //If store id is not mentioned your orders will be marked against your default store
8
];
9