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 (130)

tests/legacy/recipe/select.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Deployer;
4
5
localhost('prod')->setLabels(['env' => 'prod']);
0 ignored issues
show
The method setLabels() does not exist on Deployer\Support\ObjectProxy. Since you implemented __call, consider adding a @method annotation. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

5
localhost('prod')->/** @scrutinizer ignore-call */ setLabels(['env' => 'prod']);
Loading history...
6
localhost('beta')->setLabels(['env' => 'dev']);
7
localhost('dev')->setLabels(['env' => 'dev']);
8
9
task('test', function () {
10
    on(select('env=dev'), function () {
11
        info('executing on {{alias}}');
12
    });
13
});
14