@@ -43,10 +43,18 @@ class Raw
43
43
}
44
44
45
45
/**
46
+ * @method array select(string $table, array $columns)
47
+ * @method mixed select(string $table, string $column)
46
48
* @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)
47
52
* @method null select(string $table, array $columns, callable $callback)
53
+ * @method null select(string $table, string $column, callable $callback)
48
54
* @method null select(string $table, array $columns, array $where, callable $callback)
55
+ * @method null select(string $table, string $column, array $where, callable $callback)
49
56
* @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)
50
58
* @method mixed get(string $table, array|string $columns, array $where)
51
59
* @method bool has(string $table, array $where)
52
60
* @method mixed rand(string $table, array|string $column, array $where)
0 commit comments