Issues (4)

src/.phpstorm.meta.php (3 issues)

1
<?php
2
3
namespace PHPSTORM_META
4
{
5
    override(\Cervo\Singletons::get(0), map([
0 ignored issues
show
The function override 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

5
    /** @scrutinizer ignore-call */ 
6
    override(\Cervo\Singletons::get(0), map([
Loading history...
The function map 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

5
    override(\Cervo\Singletons::get(0), /** @scrutinizer ignore-call */ map([
Loading history...
Bug Best Practice introduced by
The method Cervo\Singletons::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

5
    override(\Cervo\Singletons::/** @scrutinizer ignore-call */ get(0), map([
Loading history...
6
        '' => '@'
7
    ]));
8
9
    override(\Cervo\Core::get(0), map([
10
        '' => '@'
11
    ]));
12
}
13