|
7 | 7 | * @method static \Illuminate\Database\ConnectionInterface connection(string $name = null) |
8 | 8 | * @method static \Illuminate\Database\Query\Builder table(string $table, string $as = null) |
9 | 9 | * @method static \Illuminate\Database\Query\Expression raw($value) |
| 10 | + * @method static array getQueryLog() |
10 | 11 | * @method static array prepareBindings(array $bindings) |
11 | 12 | * @method static array pretend(\Closure $callback) |
12 | 13 | * @method static array select(string $query, array $bindings = [], bool $useReadPdo = true) |
13 | 14 | * @method static bool insert(string $query, array $bindings = []) |
| 15 | + * @method static bool logging() |
14 | 16 | * @method static bool statement(string $query, array $bindings = []) |
15 | 17 | * @method static bool unprepared(string $query) |
16 | 18 | * @method static int affectingStatement(string $query, array $bindings = []) |
|
20 | 22 | * @method static mixed selectOne(string $query, array $bindings = [], bool $useReadPdo = true) |
21 | 23 | * @method static mixed transaction(\Closure $callback, int $attempts = 1) |
22 | 24 | * @method static string getDefaultConnection() |
| 25 | + * @method static void afterCommit(\Closure $callback) |
23 | 26 | * @method static void beginTransaction() |
24 | 27 | * @method static void commit() |
25 | | - * @method static void afterCommit(\Closure $callback) |
26 | | - * @method static void listen(\Closure $callback) |
27 | | - * @method static void rollBack(int $toLevel = null) |
28 | 28 | * @method static void enableQueryLog() |
29 | 29 | * @method static void disableQueryLog() |
30 | | - * @method static bool logging() |
31 | | - * @method static array getQueryLog() |
32 | 30 | * @method static void flushQueryLog() |
| 31 | + * @method static void listen(\Closure $callback) |
| 32 | + * @method static void rollBack(int $toLevel = null) |
33 | 33 | * @method static void setDefaultConnection(string $name) |
34 | 34 | * |
35 | 35 | * @see \Illuminate\Database\DatabaseManager |
|
0 commit comments