diff --git a/src/Medoo.php b/src/Medoo.php index adf99832..dc8c5d1b 100644 --- a/src/Medoo.php +++ b/src/Medoo.php @@ -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)