Issues (15)

.phpstorm.meta.php (2 issues)

1
<?php
2
3
namespace PHPSTORM_META {
4
5
    use Bavix\Settings\Services\SettingService;
6
    use Bavix\Settings\Services\ReadableService;
7
    use Bavix\Settings\Services\WritableService;
8
9
    override(\app(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

9
    /** @scrutinizer ignore-call */ 
10
    override(\app(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

9
    override(\app(0), /** @scrutinizer ignore-call */ map([
Loading history...
10
        SettingService::class => SettingService::class,
11
        ReadableService::class => ReadableService::class,
12
        WritableService::class => WritableService::class,
13
    ]));
14
15
}
16