Issues (1270)

.phpstorm.meta.php (8 issues)

Labels
Severity
1
<?php
2
3
namespace PHPSTORM_META
4
{
5
6
    use Doctrine\ORM\EntityManager;
7
8
    override( \RssApp\Components\Registry::get(0),
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

8
    /** @scrutinizer ignore-call */ 
9
    override( \RssApp\Components\Registry::get(0),
Loading history...
9
        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

9
        /** @scrutinizer ignore-call */ 
10
        map([
Loading history...
10
            "request" => Zend\Diactoros\ServerRequest::class,
0 ignored issues
show
The type PHPSTORM_META\Zend\Diactoros\ServerRequest was not found. Did you mean Zend\Diactoros\ServerRequest? If so, make sure to prefix the type with \.
Loading history...
11
            "router" => Symfony\Component\Routing\Router::class,
0 ignored issues
show
The type PHPSTORM_META\Symfony\Component\Routing\Router was not found. Did you mean Symfony\Component\Routing\Router? If so, make sure to prefix the type with \.
Loading history...
12
            "twig" => Environment::class,
0 ignored issues
show
The type PHPSTORM_META\Environment was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
13
            "em" => EntityManager::class,
14
        ])
15
    );
16
17
    override( Zend_Controller_Action_HelperBroker::getStaticHelper(o),
0 ignored issues
show
The constant PHPSTORM_META\o was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
The type PHPSTORM_META\Zend_Controller_Action_HelperBroker was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
18
        map([
19
            "url" => Zend_View_Helper_Url::class,
0 ignored issues
show
The type PHPSTORM_META\Zend_View_Helper_Url was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
20
        ])
21
    );
22
}
23