You are here

public function EntityCondition::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/src/Query/EntityCondition.php \Drupal\jsonapi\Query\EntityCondition::__construct()

Constructs a new EntityCondition object.

File

core/modules/jsonapi/src/Query/EntityCondition.php, line 78

Class

EntityCondition
A condition object for the EntityQuery.

Namespace

Drupal\jsonapi\Query

Code

public function __construct($field, $value, $operator = NULL) {
  $this->field = $field;
  $this->value = $value;
  $this->operator = $operator ? $operator : '=';
}