(
moduleKey: string,
providerKey: string,
collectionKey: 'providers' | 'injectables',
)
| 668 | const applyRequestProvidersMap = this.getApplyRequestProvidersMap(); |
| 669 | |
| 670 | const getInstanceWrapper = ( |
| 671 | moduleKey: string, |
| 672 | providerKey: string, |
| 673 | collectionKey: 'providers' | 'injectables', |
| 674 | ) => { |
| 675 | const modules = this.container.getModules(); |
| 676 | const collection = modules.get(moduleKey)![collectionKey]; |
| 677 | return collection.get(providerKey); |
| 678 | }; |
| 679 | |
| 680 | // Add global enhancers to the application config |
| 681 | this.applicationProvidersApplyMap.forEach( |
nothing calls this directly
no test coverage detected