From 4e5b3b043e71a7fdf9b82f22d9b70cc0d0762852 Mon Sep 17 00:00:00 2001 From: artyhedgehog Date: Mon, 22 Dec 2014 11:14:16 +0300 Subject: [PATCH] Update QueryInterface.php A back quote sign in docblock missed. --- framework/db/QueryInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/db/QueryInterface.php b/framework/db/QueryInterface.php index cb08e8ef8b..831ed0aaf9 100644 --- a/framework/db/QueryInterface.php +++ b/framework/db/QueryInterface.php @@ -88,7 +88,7 @@ interface QueryInterface * * - `['type' => 1, 'status' => 2]` generates `(type = 1) AND (status = 2)`. * - `['id' => [1, 2, 3], 'status' => 2]` generates `(id IN (1, 2, 3)) AND (status = 2)`. - * - `['status' => null] generates `status IS NULL`. + * - `['status' => null]` generates `status IS NULL`. * * A condition in operator format generates the SQL expression according to the specified operator, which * can be one of the followings: