-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.phpstorm.meta.php
23 lines (21 loc) · 1.29 KB
/
.phpstorm.meta.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
namespace PHPSTORM_META {
override(
\Psr\Container\ContainerInterface::get(0),
map([
\Inpsyde\Modularity\Package::PROPERTIES
=> \Inpsyde\Modularity\Properties\PluginProperties::class,
\Fau\DegreeProgram\Infrastructure\Dashboard\Settings\SettingsModule::SETTINGS_FIELD_RENDERER
=> \Fau\DegreeProgram\Common\Infrastructure\TemplateRenderer\Renderer::class,
\Fau\DegreeProgram\Infrastructure\Dashboard\TermMeta\TermMetaModule::TERM_META_FIELD_RENDERER
=> \Fau\DegreeProgram\Common\Infrastructure\TemplateRenderer\Renderer::class,
\Fau\DegreeProgram\Infrastructure\Revision\Notification\RevisionNotificationModule::REVISION_NOTIFICATION_RENDERER
=> \Fau\DegreeProgram\Common\Infrastructure\TemplateRenderer\Renderer::class,
\Fau\DegreeProgram\Infrastructure\Repository\RepositoryModule::VIEW_REPOSITORY_UNCACHED
=> \Fau\DegreeProgram\Common\Application\Repository\DegreeProgramViewRepository::class,
\Fau\DegreeProgram\Infrastructure\Repository\RepositoryModule::COLLECTION_REPOSITORY_UNCACHED
=> \Fau\DegreeProgram\Common\Application\Repository\DegreeProgramCollectionRepository::class,
'' => '@',
])
);
}