Skip to content

Commit b063e22

Browse files
committed
Merge branch '7.x' into 8.x
# Conflicts: # src/Illuminate/Foundation/Application.php # src/Illuminate/Support/Facades/DB.php # src/Illuminate/View/Engines/CompilerEngine.php
2 parents e596321 + 7f7c057 commit b063e22

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
linux_tests:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-18.04
1212

1313
services:
1414
memcached:

CHANGELOG-6.x.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Release Notes for 6.x
22

3-
## [Unreleased](https://github.com/laravel/framework/compare/v6.20.16...6.x)
3+
## [Unreleased](https://github.com/laravel/framework/compare/v6.20.17...6.x)
4+
5+
6+
## [v6.20.17 (2021-03-02)](https://github.com/laravel/framework/compare/v6.20.16...v6.20.17)
7+
8+
### Added
9+
- Added new line to `DetectsLostConnections` ([#36373](https://github.com/laravel/framework/pull/36373))
410

511

612
## [v6.20.16 (2021-02-02)](https://github.com/laravel/framework/compare/v6.20.15...v6.20.16)

src/Illuminate/Support/Facades/DB.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
* @method static \Illuminate\Database\ConnectionInterface connection(string $name = null)
88
* @method static \Illuminate\Database\Query\Builder table(string $table, string $as = null)
99
* @method static \Illuminate\Database\Query\Expression raw($value)
10+
* @method static array getQueryLog()
1011
* @method static array prepareBindings(array $bindings)
1112
* @method static array pretend(\Closure $callback)
1213
* @method static array select(string $query, array $bindings = [], bool $useReadPdo = true)
1314
* @method static bool insert(string $query, array $bindings = [])
15+
* @method static bool logging()
1416
* @method static bool statement(string $query, array $bindings = [])
1517
* @method static bool unprepared(string $query)
1618
* @method static int affectingStatement(string $query, array $bindings = [])
@@ -20,16 +22,14 @@
2022
* @method static mixed selectOne(string $query, array $bindings = [], bool $useReadPdo = true)
2123
* @method static mixed transaction(\Closure $callback, int $attempts = 1)
2224
* @method static string getDefaultConnection()
25+
* @method static void afterCommit(\Closure $callback)
2326
* @method static void beginTransaction()
2427
* @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)
2828
* @method static void enableQueryLog()
2929
* @method static void disableQueryLog()
30-
* @method static bool logging()
31-
* @method static array getQueryLog()
3230
* @method static void flushQueryLog()
31+
* @method static void listen(\Closure $callback)
32+
* @method static void rollBack(int $toLevel = null)
3333
* @method static void setDefaultConnection(string $name)
3434
*
3535
* @see \Illuminate\Database\DatabaseManager

0 commit comments

Comments
 (0)