Query.php in Drupal 10
File
core/lib/Drupal/Core/Entity/Query/Null/Query.php
View source
<?php
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;
class Query extends QueryBase implements QueryInterface, QueryAggregateInterface {
public function execute() {
if ($this->count) {
return 0;
}
return [];
}
public function existsAggregate($field, $function, $langcode = NULL) {
return $this->conditionAggregate
->exists($field, $function, $langcode);
}
public function notExistsAggregate($field, $function, $langcode = NULL) {
return $this->conditionAggregate
->notExists($field, $function, $langcode);
}
public function conditionAggregateGroupFactory($conjunction = 'AND') {
return new ConditionAggregate($conjunction, $this);
}
}
Classes
Name |
Description |
Query |
Defines the entity query for configuration entities. |