| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | public function __invoke(): AbstractModule |
||
| 36 | { |
||
| 37 | $module = new ScriptinjectorModule($this->scriptDir, (new Module())($this->appMeta, $this->context)); |
||
| 38 | if ($this->strict) { |
||
| 39 | $module->install(new ResourceObjectModule($this->appMeta->getResourceListGenerator())); |
||
| 40 | } |
||
| 41 | |||
| 42 | return $module; |
||
| 43 | } |
||
| 45 |