From 07b878de3b99d6ff0ca75bd1a82815445f140165 Mon Sep 17 00:00:00 2001
From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org>
Date: Wed, 12 Feb 2014 17:07:32 +0000
Subject: [PATCH] Issue #2191721 by divesh.kumar:
 Drupal\Core\Entity\Query\Sql\Condition class has no docblock.

---
 core/lib/Drupal/Core/Entity/Query/Sql/Condition.php | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/core/lib/Drupal/Core/Entity/Query/Sql/Condition.php b/core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
index 19f6a3ddb81e..1067db3adb62 100644
--- a/core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
+++ b/core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
@@ -12,6 +12,9 @@
 use Drupal\Core\Database\Query\SelectInterface;
 use Drupal\Core\Database\Query\Condition as SqlCondition;
 
+/**
+ * Implements entity query conditions for SQL databases.
+ */
 class Condition extends ConditionBase {
 
   /**
@@ -22,7 +25,7 @@ class Condition extends ConditionBase {
   protected $query;
 
   /**
-   * Implements Drupal\Core\Entity\Query\ConditionInterface::compile().
+   * {@inheritdoc}
    */
   public function compile($conditionContainer) {
     // If this is not the top level condition group then the sql query is
@@ -50,14 +53,14 @@ public function compile($conditionContainer) {
   }
 
   /**
-   * Implements Drupal\Core\Entity\Query\ConditionInterface::exists().
+   * {@inheritdoc}
    */
   public function exists($field, $langcode = NULL) {
     return $this->condition($field, NULL, 'IS NOT NULL', $langcode);
   }
 
   /**
-   * Implements Drupal\Core\Entity\Query\ConditionInterface::notExists().
+   * {@inheritdoc}
    */
   public function notExists($field, $langcode = NULL) {
     return $this->condition($field, NULL, 'IS NULL', $langcode);
-- 
GitLab