8000 [9.x] Bump DBAL to 2.12 by driesvints · Pull Request #35974 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

[9.x] Bump DBAL to 2.12 #35974

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 21, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
inheritdoc
  • Loading branch information
driesvints committed Jan 21, 2021
commit 3793a338c162d83d5d2c7de0f6aaf8b36b204536
6 changes: 1 addition & 5 deletions src/Illuminate/Database/PDO/MySqlDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ class MySqlDriver extends AbstractMySQLDriver
use ConnectsToDatabase;

/**
* Gets the name of the driver.
*
* @deprecated
*
* @return string The name of the driver.
* {@inheritdoc}
*/
public function getName()
{
Expand Down
6 changes: 1 addition & 5 deletions src/Illuminate/Database/PDO/PostgresDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ class PostgresDriver extends AbstractPostgreSQLDriver
use ConnectsToDatabase;

/**
* Gets the name of the driver.
*
* @deprecated
*
* @return string The name of the driver.
* {@inheritdoc}
*/
public function getName()
{
Expand Down
6 changes: 1 addition & 5 deletions src/Illuminate/Database/PDO/SQLiteDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ class SQLiteDriver extends AbstractSQLiteDriver
use ConnectsToDatabase;

/**
* Gets the name of the driver.
*
* @deprecated
*
* @return string The name of the driver.
* {@inheritdoc}
*/
public function getName()
{
Expand Down
6 changes: 1 addition & 5 deletions src/Illuminate/Database/PDO/SqlServerDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@ public function connect(array $params, $username = null, $password = null, array
}

/**
* Gets the name of the driver.
*
* @deprecated
*
* @return string The name of the driver.
* {@inheritdoc}
*/
public function getName()
{
Expand Down
0