Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class MySqlConnection extends BaseConnection |
||
11 | { |
||
12 | /** |
||
13 | * Handle a query exception that occurred during query execution. |
||
14 | * |
||
15 | * @param \Illuminate\Database\QueryException $e |
||
16 | * @param string $query |
||
17 | * @param array $bindings |
||
18 | * @param \Closure $callback |
||
19 | * |
||
20 | * @return mixed |
||
21 | * |
||
22 | * @throws \Illuminate\Database\QueryException |
||
23 | */ |
||
24 | protected function tryAgainIfCausedByLostConnection(QueryException $e, $query, $bindings, Closure $callback) |
||
39 |