| Conditions | 3 | 
| Paths | 3 | 
| Total Lines | 10 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 28 | 	public function getConnection( $i, $groups = [], $domain = false, $flags = 0 ) { | ||
| 29 | 		switch ( $i ) { | ||
| 30 | case ILoadBalancer::DB_REPLICA: | ||
| 31 | return $this->dbr; | ||
| 32 | case ILoadBalancer::DB_MASTER: | ||
| 33 | return $this->dbw; | ||
| 34 | default: | ||
| 35 | throw new InvalidArgumentException( 'only DB_REPLICA and DB_MASTER supported' ); | ||
| 36 | } | ||
| 37 | } | ||
| 38 | |||
| 56 |