| Conditions | 2 |
| Paths | 2 |
| Total Lines | 22 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 38 | function directives() |
||
| 39 | { |
||
| 40 | $directiveMD = <<<EOF |
||
| 41 | # Directives\n\n |
||
| 42 | |||
| 43 | Directives supported by Modelarium. |
||
| 44 | |||
| 45 | EOF; |
||
| 46 | $directives = LaravelProcessor::getDirectivesGraphql(); |
||
| 47 | foreach ($directives as $name => $directive) { |
||
| 48 | $directiveMD .= <<<EOF |
||
| 49 | |||
| 50 | ## @$name |
||
| 51 | |||
| 52 | ```graphql |
||
| 53 | $directive |
||
| 54 | ``` |
||
| 55 | |||
| 56 | EOF; |
||
| 57 | } |
||
| 58 | $filename = __DIR__ . '/../docs/api-directives.md'; |
||
| 59 | \Safe\file_put_contents($filename, $directiveMD); |
||
| 60 | } |
||
| 65 |
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