Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | protected function render($skeletonDir, $template, $parameters) |
||
11 | { |
||
12 | if (class_exists('Twig\Environment')) { |
||
13 | $environment = new Environment(new FilesystemLoader($skeletonDir), [ |
||
14 | 'debug' => true, |
||
15 | 'cache' => false, |
||
16 | 'strict_variables' => true, |
||
17 | 'autoescape' => false, |
||
18 | ]); |
||
19 | |||
20 | return $environment->render($template, $parameters); |
||
21 | } |
||
22 | throw new \Exception("Class not found: Twig\Environment"); |
||
23 | } |
||
41 |
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