| Total Complexity | 5 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class EntityQueryMapQueryProvider implements QueryProviderInterface { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * The entity type manager service. |
||
| 12 | * |
||
| 13 | * @var \Drupal\Core\Entity\EntityTypeManagerInterface |
||
| 14 | */ |
||
| 15 | protected $entityTypeManager; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * QueryProvider constructor. |
||
| 19 | * |
||
| 20 | * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager |
||
| 21 | * The entity type manager service. |
||
| 22 | */ |
||
| 23 | public function __construct(EntityTypeManagerInterface $entityTypeManager) { |
||
| 24 | $this->entityTypeManager = $entityTypeManager; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | public function getQuery($id, OperationParams $operation) { |
||
| 45 | } |
||
| 46 | } |
||
| 47 |
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