Issues (467)

.phpstorm.meta.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace PHPSTORM_META {
4
    override(\app(0), map([
0 ignored issues
show
It seems like app(0) can also be of type Illuminate\Contracts\Foundation\Application and Illuminate\Foundation\Application; however, parameter $callable of PHPSTORM_META\override() does only seem to accept callable, maybe add an additional type check? ( Ignorable by Annotation )

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

4
    override(/** @scrutinizer ignore-type */ \app(0), map([
Loading history...
5
        'hyde' => \Hyde\Foundation\HydeKernel::class,
6
        'navigation.main' => \Hyde\Framework\Features\Navigation\MainNavigationMenu::class,
7
        'navigation.sidebar' => \Hyde\Framework\Features\Navigation\DocumentationSidebar::class,
8
    ]));
9
}
10