From 4b7a940b8ab023c865bc9fff09bd71192f30ae4d Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Thu, 11 Dec 2014 18:17:45 +0100 Subject: [PATCH] Issue #2167379 by Elijah Lynn, filijonka: db_select docblock should list optional parameters as (optional) --- core/includes/database.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/includes/database.inc b/core/includes/database.inc index 6d5318b674ef..44863df74f7b 100644 --- a/core/includes/database.inc +++ b/core/includes/database.inc @@ -427,9 +427,9 @@ function db_truncate($table, array $options = array()) { * The base table for this query. May be a string or another SelectQuery * object. If a query object is passed, it will be used as a subselect. * @param $alias - * The alias for the base table of this query. + * (optional) The alias for the base table of this query. * @param $options - * An array of options to control how the query operates. + * (optional) An array of options to control how the query operates. * * @return \Drupal\Core\Database\Query\Select * A new Select object for this connection.