1 | <?php |
||
7 | class EntityQueryMapQueryProvider implements QueryProviderInterface { |
||
8 | /** |
||
9 | * The entity type manager service. |
||
10 | * |
||
11 | * @var \Drupal\Core\Entity\EntityTypeManagerInterface |
||
12 | */ |
||
13 | protected $entityTypeManager; |
||
14 | |||
15 | /** |
||
16 | * Constructs a QueryProvider object. |
||
17 | * |
||
18 | * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager |
||
19 | * The entity type manager service. |
||
20 | */ |
||
21 | public function __construct(EntityTypeManagerInterface $entityTypeManager) { |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function getQuery(array $params) { |
||
41 | } |
||
42 |