| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 50 | #[Override] |
||
| 51 | protected function configure(): void |
||
| 52 | { |
||
| 53 | $this->bind()->annotatedWith(ImportAppConfig::class)->toInstance($this->importApps); |
||
| 54 | $this->bind(SchemeCollectionInterface::class)->annotatedWith('original')->toProvider(SchemeCollectionProvider::class); |
||
| 55 | $this->bind(SchemeCollectionInterface::class)->toProvider(ImportSchemeCollectionProvider::class); |
||
| 56 | foreach ($this->importApps as $app) { |
||
| 57 | $meta = new Meta($app->appName, $app->context, $app->appDir); |
||
| 58 | $this->install(new ResourceObjectModule($meta->getResourceListGenerator())); |
||
| 59 | } |
||
| 62 |