Skip to content

Commit

Permalink
phpdoc update/fix
Browse files Browse the repository at this point in the history
Signed-off-by: pine3ree <[email protected]>
  • Loading branch information
pine3ree committed Oct 11, 2023
1 parent de1ac94 commit bd2d0c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Command/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
* @property-read string|Null $alias The table alias if any
* @property-read string|null $quantifier The SELECT quantifier if any
* @property-read string[] $columns The columns to be returned
* @property-read string|null $into The db table to insert the selected rows into, if any
* @property-read string|self|null $from The db table to select from or a sub-select if already set
* @property-read Where $where The Where clause, built on-first-access if null
* @property-read Join[] $joins An array of Join clauses if any
Expand Down
2 changes: 1 addition & 1 deletion src/Sql/Statement/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
* @property-read string|null $quantifier The SELECT quantifier if any
* @property-read string[]|Identifier[]|Literal[]|Expression[]|self[] $columns The columns to be returned
* @psalm-property-read array<string, string|Identifier|Literal|Expression|self> $columns
* @property-read string|self|null $from The db table to select from or a sub-select if already set
* @property-read string|null $into The db table to insert the selected rows into, if any
* @property-read string|self|null $from The db table to select from or a sub-select if already set
* @property-read Where $where The Where clause, built on-first-access if null
* @property-read Join[] $joins An array of Join clauses if any
* @property-read array $groupBy An array of GROUP BY identifiers
Expand Down

0 comments on commit bd2d0c2

Please sign in to comment.