Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 11 |
| Query | |
0.00% |
0 / 1 |
|
0.00% |
0 / 4 |
30 | |
0.00% |
0 / 11 |
| execute | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 5 |
|||
| existsAggregate | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| notExistsAggregate | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| conditionAggregateGroupFactory | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Core\Entity\Query\Null\Query. | |
| */ | |
| namespace Drupal\Core\Entity\Query\Null; | |
| use Drupal\Core\Entity\Query\QueryAggregateInterface; | |
| use Drupal\Core\Entity\Query\QueryBase; | |
| use Drupal\Core\Entity\Query\QueryInterface; | |
| use Drupal\Core\Entity\Query\Sql\ConditionAggregate; | |
| /** | |
| * Defines the entity query for configuration entities. | |
| */ | |
| class Query extends QueryBase implements QueryInterface, QueryAggregateInterface { | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| public function execute() { | |
| if ($this->count) { | |
| return 0; | |
| } | |
| return []; | |
| } | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| public function existsAggregate($field, $function, $langcode = NULL) { | |
| return $this->conditionAggregate->exists($field, $function, $langcode); | |
| } | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| public function notExistsAggregate($field, $function, $langcode = NULL) { | |
| return $this->conditionAggregate->notExists($field, $function, $langcode); | |
| } | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| public function conditionAggregateGroupFactory($conjunction = 'AND') { | |
| return new ConditionAggregate($conjunction, $this); | |
| } | |
| } |