From a475516d585a682b4cd29dfce959c7d9a0861f79 Mon Sep 17 00:00:00 2001 From: Maximilian Ruta Date: Tue, 10 May 2016 12:54:58 +0200 Subject: [PATCH] Fluent methods in QueryBuilder are now documented as returning `$this` --- lib/Doctrine/DBAL/Query/QueryBuilder.php | 60 ++++++++++++------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/lib/Doctrine/DBAL/Query/QueryBuilder.php b/lib/Doctrine/DBAL/Query/QueryBuilder.php index dd9a33d2233..6c86aba9f2c 100644 --- a/lib/Doctrine/DBAL/Query/QueryBuilder.php +++ b/lib/Doctrine/DBAL/Query/QueryBuilder.php @@ -266,7 +266,7 @@ public function getSQL() * @param mixed $value The parameter value. * @param string|null $type One of the PDO::PARAM_* constants. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function setParameter($key, $value, $type = null) { @@ -296,7 +296,7 @@ public function setParameter($key, $value, $type = null) * @param array $params The query parameters to set. * @param array $types The query parameters types to set. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function setParameters(array $params, array $types = array()) { @@ -355,7 +355,7 @@ public function getParameterType($key) * * @param integer $firstResult The first result to return. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function setFirstResult($firstResult) { @@ -381,7 +381,7 @@ public function getFirstResult() * * @param integer $maxResults The maximum number of results to retrieve. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function setMaxResults($maxResults) { @@ -412,7 +412,7 @@ public function getMaxResults() * @param string $sqlPart * @param boolean $append * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function add($sqlPartName, $sqlPart, $append = false) { @@ -460,7 +460,7 @@ public function add($sqlPartName, $sqlPart, $append = false) * * @param mixed $select The selection expressions. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function select($select = null) { @@ -488,7 +488,7 @@ public function select($select = null) * * @param mixed $select The selection expression. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function addSelect($select = null) { @@ -517,7 +517,7 @@ public function addSelect($select = null) * @param string $delete The table whose rows are subject to the deletion. * @param string $alias The table alias used in the constructed query. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function delete($delete = null, $alias = null) { @@ -547,7 +547,7 @@ public function delete($delete = null, $alias = null) * @param string $update The table whose rows are subject to the update. * @param string $alias The table alias used in the constructed query. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function update($update = null, $alias = null) { @@ -580,7 +580,7 @@ public function update($update = null, $alias = null) * * @param string $insert The table into which the rows should be inserted. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function insert($insert = null) { @@ -608,7 +608,7 @@ public function insert($insert = null) * @param string $from The table. * @param string|null $alias The alias of the table. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function from($from, $alias = null) { @@ -633,7 +633,7 @@ public function from($from, $alias = null) * @param string $alias The alias of the join table. * @param string $condition The condition for the join. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function join($fromAlias, $join, $alias, $condition = null) { @@ -655,7 +655,7 @@ public function join($fromAlias, $join, $alias, $condition = null) * @param string $alias The alias of the join table. * @param string $condition The condition for the join. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function innerJoin($fromAlias, $join, $alias, $condition = null) { @@ -684,7 +684,7 @@ public function innerJoin($fromAlias, $join, $alias, $condition = null) * @param string $alias The alias of the join table. * @param string $condition The condition for the join. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function leftJoin($fromAlias, $join, $alias, $condition = null) { @@ -713,7 +713,7 @@ public function leftJoin($fromAlias, $join, $alias, $condition = null) * @param string $alias The alias of the join table. * @param string $condition The condition for the join. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function rightJoin($fromAlias, $join, $alias, $condition = null) { @@ -740,7 +740,7 @@ public function rightJoin($fromAlias, $join, $alias, $condition = null) * @param string $key The column to set. * @param string $value The value, expression, placeholder, etc. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function set($key, $value) { @@ -771,7 +771,7 @@ public function set($key, $value) * * @param mixed $predicates The restriction predicates. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function where($predicates) { @@ -796,7 +796,7 @@ public function where($predicates) * * @param mixed $where The query restrictions. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. * * @see where() */ @@ -829,7 +829,7 @@ public function andWhere($where) * * @param mixed $where The WHERE statement. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. * * @see where() */ @@ -861,7 +861,7 @@ public function orWhere($where) * * @param mixed $groupBy The grouping expression. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function groupBy($groupBy) { @@ -888,7 +888,7 @@ public function groupBy($groupBy) * * @param mixed $groupBy The grouping expression. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function addGroupBy($groupBy) { @@ -918,7 +918,7 @@ public function addGroupBy($groupBy) * @param string $column The column into which the value should be inserted. * @param string $value The value that should be inserted into the column. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function setValue($column, $value) { @@ -944,7 +944,7 @@ public function setValue($column, $value) * * @param array $values The values to specify for the insert query indexed by column names. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function values(array $values) { @@ -957,7 +957,7 @@ public function values(array $values) * * @param mixed $having The restriction over the groups. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function having($having) { @@ -974,7 +974,7 @@ public function having($having) * * @param mixed $having The restriction to append. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function andHaving($having) { @@ -997,7 +997,7 @@ public function andHaving($having) * * @param mixed $having The restriction to add. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function orHaving($having) { @@ -1021,7 +1021,7 @@ public function orHaving($having) * @param string $sort The ordering expression. * @param string $order The ordering direction. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function orderBy($sort, $order = null) { @@ -1034,7 +1034,7 @@ public function orderBy($sort, $order = null) * @param string $sort The ordering expression. * @param string $order The ordering direction. * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function addOrderBy($sort, $order = null) { @@ -1068,7 +1068,7 @@ public function getQueryParts() * * @param array|null $queryPartNames * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function resetQueryParts($queryPartNames = null) { @@ -1088,7 +1088,7 @@ public function resetQueryParts($queryPartNames = null) * * @param string $queryPartName * - * @return self This QueryBuilder instance. + * @return $this This QueryBuilder instance. */ public function resetQueryPart($queryPartName) {