| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function __invoke($module, string $classDir): Container |
||
| 22 | { |
||
| 23 | $oneModule = $this->getModule($module); |
||
| 24 | // install built-in module |
||
| 25 | $appModule = (new BuiltinModule())($oneModule); |
||
| 26 | $container = $appModule->getContainer(); |
||
| 27 | // Compile null objects |
||
| 28 | (new CompileNullObject())($container, $classDir); |
||
| 29 | // Compile aspects |
||
| 30 | /** @psalm-suppress InvalidArgument */ |
||
| 31 | $container->weaveAspects(new Compiler($classDir)); |
||
| 32 | |||
| 33 | return $container; |
||
| 34 | } |
||
| 58 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths