Skip to content

Commit b5533da

Browse files
committed
[update] add more doc comment for select() #1094
1 parent 2103e9b commit b5533da

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/Medoo.php

+8
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,18 @@ class Raw
4343
}
4444

4545
/**
46+
* @method array select(string $table, array $columns)
47+
* @method mixed select(string $table, string $column)
4648
* @method array select(string $table, array $columns, array $where)
49+
* @method mixed select(string $table, string $column, array $where)
50+
* @method array select(string $table, array $join, array $columns)
51+
* @method mixed select(string $table, array $join, string $column)
4752
* @method null select(string $table, array $columns, callable $callback)
53+
* @method null select(string $table, string $column, callable $callback)
4854
* @method null select(string $table, array $columns, array $where, callable $callback)
55+
* @method null select(string $table, string $column, array $where, callable $callback)
4956
* @method null select(string $table, array $join, array $columns, array $where, callable $callback)
57+
* @method null select(string $table, array $join, string $column, array $where, callable $callback)
5058
* @method mixed get(string $table, array|string $columns, array $where)
5159
* @method bool has(string $table, array $where)
5260
* @method mixed rand(string $table, array|string $column, array $where)

0 commit comments

Comments
 (0)