3.x - Fix deprecated order direction usage example.
@@ -1140,7 +1140,9 @@ class Query implements ExpressionInterface, IteratorAggregate
* `ORDER BY title DESC, author_id ASC`
*
* ```
- * $query->order(['title' => 'DESC NULLS FIRST'])->order('author_id');
+ * $query
+ * ->order(['title' => $query->newExpr('DESC NULLS FIRST')])
+ * ->order('author_id');
* Will generate:
@@ -218,7 +218,9 @@ interface QueryInterface