From f76e767edde65ac86bf3bde1fdfaab06b7fc3b21 Mon Sep 17 00:00:00 2001
From: Carsten Brandt <mail@cebe.cc>
Date: Wed, 24 Sep 2014 15:32:40 +0200
Subject: [PATCH] added docs for #5147

---
 framework/db/QueryInterface.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/framework/db/QueryInterface.php b/framework/db/QueryInterface.php
index 4cf6dea..006eb55 100644
--- a/framework/db/QueryInterface.php
+++ b/framework/db/QueryInterface.php
@@ -137,6 +137,9 @@ interface QueryInterface
      * - **or not like**: similar to the `not like` operator except that `OR` is used to concatenate
      *   the `NOT LIKE` predicates.
      *
+     * - Additionally you can specify arbitrary operators as follows: A condition of `['>=', 'id', 10]` will result in the
+     *   following SQL expression: `id >= 10`.
+     *
      * @param string|array $condition the conditions that should be put in the WHERE part.
      * @return static the query object itself
      * @see andWhere()
--
libgit2 0.27.1