Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 5 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
37 | #[Override] |
||
38 | protected function configure(): void |
||
39 | { |
||
40 | $this->install(new ResourceClientModule()); |
||
41 | $this->install(new EmbedResourceModule()); |
||
42 | $this->install(new HttpClientModule()); |
||
43 | $this->bind()->annotatedWith(AppName::class)->toInstance($this->appName); |
||
44 | |||
45 | // Backward compatibility |
||
46 | /** @psalm-suppress DeprecatedClass */ |
||
47 | $this->install(new AnnotationModule()); |
||
|
|||
48 | } |
||
50 |