Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
40 | 10 | public function __construct($serversConfig, Driver $driver) |
|
41 | { |
||
42 | 10 | foreach ($serversConfig as $configDsn) { |
|
43 | 10 | $this->servers[] = $this->getServer($this->getConfig($configDsn), $driver); |
|
44 | } |
||
45 | 10 | $this->quorum = (int)min(count($this->servers), (floor(count($this->servers) / 2) + 1)); |
|
46 | 10 | } |
|
47 | |||
91 |