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.
Completed
Pull Request — master (#153)
by joseph
22:27
created

.phpstorm.meta.php/entityfactory.meta.php (6 issues)

1
<?php declare(strict_types=1);
2
3
namespace PHPSTORM_META {
4
5
    override(
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(
Loading history...
6
        \EdmondsCommerce\DoctrineStaticMeta\Entity\Factory\EntityFactory::create(0, 1),
0 ignored issues
show
1 of type integer is incompatible with the type EdmondsCommerce\Doctrine...ferObjectInterface|null expected by parameter $dto of EdmondsCommerce\Doctrine...EntityFactory::create(). ( Ignorable by Annotation )

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

6
        \EdmondsCommerce\DoctrineStaticMeta\Entity\Factory\EntityFactory::create(0, /** @scrutinizer ignore-type */ 1),
Loading history...
Bug Best Practice introduced by
The method EdmondsCommerce\Doctrine...EntityFactory::create() 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

6
        \EdmondsCommerce\DoctrineStaticMeta\Entity\Factory\EntityFactory::/** @scrutinizer ignore-call */ 
7
                                                                          create(0, 1),
Loading history...
7
        map(
0 ignored issues
show
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

7
        /** @scrutinizer ignore-call */ 
8
        map(
Loading history...
8
            [
9
                '' => type(0),
0 ignored issues
show
The function type 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

9
                '' => /** @scrutinizer ignore-call */ type(0),
Loading history...
10
            ]
11
        )
12
    );
13
14
    override(
15
        \EdmondsCommerce\DoctrineStaticMeta\Entity\Factory\EntityFactory::getEntity(0),
0 ignored issues
show
Bug Best Practice introduced by
The method EdmondsCommerce\Doctrine...ityFactory::getEntity() 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

15
        \EdmondsCommerce\DoctrineStaticMeta\Entity\Factory\EntityFactory::/** @scrutinizer ignore-call */ 
16
                                                                          getEntity(0),
Loading history...
16
        map(
17
            [
18
                '' => type(0),
19
            ]
20
        )
21
    );
22
}