Conditions | 5 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | private function convertMarkdown() { |
||
17 | $environment = Environment::createCommonMarkEnvironment(); |
||
18 | // $environment->addExtension(new TableExtension()); |
||
19 | |||
20 | $converter = new Converter(new DocParser($environment), new HtmlRenderer($environment)); |
||
21 | |||
22 | if ($this->markdown && count($this->markdown)) { |
||
23 | foreach ($this->markdown as $markdown) { |
||
24 | if ($this->content->has($markdown)) { |
||
25 | $this->content[$markdown . '_html'] = $converter->convertToHtml($this->content[$markdown]); |
||
26 | } |
||
30 | } |
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