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

framework/.phpstorm.meta.php (2 issues)

1
<?php
2
// .phpstorm.meta.php
3
4
namespace PHPSTORM_META {
5
6
    override(
7
        \yii\di\Container::get(0),
0 ignored issues
show
Bug Best Practice introduced by
The method yii\di\Container::get() is not static, but was called statically. ( Ignorable by Annotation )

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

7
        \yii\di\Container::/** @scrutinizer ignore-call */ 
8
                           get(0),
Loading history...
yii\di\Container::get(0) of type object is incompatible with the type callable expected by parameter $callable of PHPSTORM_META\override(). ( Ignorable by Annotation )

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

7
        /** @scrutinizer ignore-type */ \yii\di\Container::get(0),
Loading history...
8
        map([
9
            '' => '@',
10
        ])
11
    );
12
13
    override(
14
        \yii\di\Instance::ensure(0),
15
        map([
16
            '' => '@',
17
        ])
18
    );
19
20
    override(
21
        \Yii::createObject(0),
22
        map([
23
            '' => '@',
24
        ])
25
    );
26
}
27