GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Issues (65)

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
    'client_secret' => env('BSECURE_CLIENT_SECRET', ''),
6
    //use 'production' for live orders and 'sandbox' for testing orders. When left empty or `null` the sandbox environment will be used
7
    'environment' => env('BSECURE_ENVIRONMENT'),
8
];
9