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
Bug
introduced
by
![]() |
|||||||
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
![]() |
|||||||
10 | "request" => Zend\Diactoros\ServerRequest::class, |
||||||
0 ignored issues
–
show
|
|||||||
11 | "router" => Symfony\Component\Routing\Router::class, |
||||||
0 ignored issues
–
show
|
|||||||
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. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||||||
13 | "em" => EntityManager::class, |
||||||
14 | ]) |
||||||
15 | ); |
||||||
16 | |||||||
17 | override( Zend_Controller_Action_HelperBroker::getStaticHelper(o), |
||||||
0 ignored issues
–
show
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. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||||||
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. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||||||
20 | ]) |
||||||
21 | ); |
||||||
22 | } |
||||||
23 |