| Total Complexity | 5 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class GraphQLSchema extends Plugin { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The schema name. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | public $name; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The schema path. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | public $path; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Weight for precedence calculations. |
||
| 30 | * |
||
| 31 | * If multiple components with the same name are available, the highest |
||
| 32 | * weight wins. |
||
| 33 | * |
||
| 34 | * @var int |
||
| 35 | */ |
||
| 36 | public $weight = 0; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * GraphQLSchema constructor. |
||
| 40 | * |
||
| 41 | * @param mixed $values |
||
| 42 | * The plugin annotation values. |
||
| 43 | * |
||
| 44 | * @throws \Doctrine\Common\Annotations\AnnotationException |
||
| 45 | * In case of missing required values. |
||
| 46 | */ |
||
| 47 | public function __construct($values) { |
||
| 60 |
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