Skip to content

Commit

Permalink
doctrine#4295 Restored master, slaves, keepReplica params in MasterSl…
Browse files Browse the repository at this point in the history
…aveConnection
  • Loading branch information
Joe Bennett committed Sep 28, 2020
1 parent 1687865 commit 066049d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/Doctrine/DBAL/Connections/MasterSlaveConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,18 @@ public function __construct(
$this->deprecated('Params key "master"', '"primary"');

$params['primary'] = $params['master'];
unset($params['master']);
}

if (isset($params['slaves'])) {
$this->deprecated('Params key "slaves"', '"replica"');

$params['replica'] = $params['slaves'];
unset($params['slaves']);
}

if (isset($params['keepSlave'])) {
$this->deprecated('Params key "keepSlave"', '"keepReplica"');

$params['keepReplica'] = $params['keepSlave'];
unset($params['keepSlave']);
}

parent::__construct($params, $driver, $config, $eventManager);
Expand Down

0 comments on commit 066049d

Please sign in to comment.