Skip to content

Commit

Permalink
[update] add more doc comment for select() #1094
Browse files Browse the repository at this point in the history
  • Loading branch information
catfan committed Oct 11, 2024
1 parent 2103e9b commit b5533da
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Medoo.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,18 @@ class Raw
}

/**
* @method array select(string $table, array $columns)
* @method mixed select(string $table, string $column)
* @method array select(string $table, array $columns, array $where)
* @method mixed select(string $table, string $column, array $where)
* @method array select(string $table, array $join, array $columns)
* @method mixed select(string $table, array $join, string $column)
* @method null select(string $table, array $columns, callable $callback)
* @method null select(string $table, string $column, callable $callback)
* @method null select(string $table, array $columns, array $where, callable $callback)
* @method null select(string $table, string $column, array $where, callable $callback)
* @method null select(string $table, array $join, array $columns, array $where, callable $callback)
* @method null select(string $table, array $join, string $column, array $where, callable $callback)
* @method mixed get(string $table, array|string $columns, array $where)
* @method bool has(string $table, array $where)
* @method mixed rand(string $table, array|string $column, array $where)
Expand Down

0 comments on commit b5533da

Please sign in to comment.