Issue #2191667 by sandykadam, Berdir: Fix documentation of field exists/notExists methods on entity query interface

8.0.x
Jennifer Hodgdon 2014-02-12 15:35:30 -08:00
parent e73c781f74
commit 804e0e05e7
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ interface QueryInterface extends AlterableInterface {
public function condition($field, $value = NULL, $operator = NULL, $langcode = NULL);
/**
* Queries for the existence of a field.
* Queries for a non-empty value on a field.
*
* @param $field
* Name of a field.
@ -79,7 +79,7 @@ interface QueryInterface extends AlterableInterface {
public function exists($field, $langcode = NULL);
/**
* Queries for the nonexistence of a field.
* Queries for an empty field.
*
* @param $field.
* Name of a field.