Skip to content

Commit

Permalink
Improve phpdoc [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Apr 7, 2024
1 parent 932bef6 commit 5a0ac86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Query/QueryPartsInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function addOrderBy(array|string|ExpressionInterface $columns): static;
* $query->addSelect(["*", "CONCAT(first_name, ' ', last_name) AS full_name"])->one();
* ```
*
* @param array|bool|ExpressionInterface|float|int|string $columns The columns to add to the select.
* @param array|ExpressionInterface|scalar $columns The columns to add to the select.
*
* @see select() for more details about the format of this parameter.
*
Expand Down Expand Up @@ -519,7 +519,7 @@ public function rightJoin(array|string $table, array|string $on = '', array $par
/**
* Sets the `SELECT` part of the query.
*
* @param array|bool|ExpressionInterface|float|int|string $columns The columns to be selected.
* @param array|ExpressionInterface|scalar $columns The columns to be selected.
* Columns can be specified in either a string (for example `id, name`) or an array (such as `['id', 'name']`).
* Columns can be prefixed with table names (such as `user.id`) and/or contain column aliases
* (for example `user.id AS user_id`).
Expand Down

0 comments on commit 5a0ac86

Please sign in to comment.