Skip to content

Commit

Permalink
[11.x] Make DB::usingConnection() respect read/write type (#50806)
Browse files Browse the repository at this point in the history
* Resolving default connection name before parsing it

* formatting

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
  • Loading branch information
SajtiDH and taylorotwell committed Mar 28, 2024
1 parent 53901cd commit f25fcd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Database/DatabaseManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ public function __construct($app, ConnectionFactory $factory)
*/
public function connection($name = null)
{
[$database, $type] = $this->parseConnectionName($name);
$name = $name ?: $this->getDefaultConnection();

$name = $name ?: $database;
[$database, $type] = $this->parseConnectionName($name);

// If we haven't created this connection, we'll create it based on the config
// provided in the application. Once we've created the connections we will
Expand Down

0 comments on commit f25fcd2

Please sign in to comment.