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
Bug
introduced
by
![]() 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 | SettingService::class => SettingService::class, |
||||
11 | ReadableService::class => ReadableService::class, |
||||
12 | WritableService::class => WritableService::class, |
||||
13 | ])); |
||||
14 | |||||
15 | } |
||||
16 |