| Total Complexity | 5 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class Generator |
||
| 9 | { |
||
| 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 | } |
||
| 24 | |||
| 25 | protected function renderFile($skeletonDir, $template, $target, $parameters) |
||
| 30 | } |
||
| 31 | |||
| 32 | protected function saveFile($target, $output) |
||
| 39 | } |
||
| 40 | } |
||
| 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