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