| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 7 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 12 | public function __construct(array $connections)  | 
            ||
| 13 |     { | 
            ||
| 14 |         foreach ($connections as $name => $connection) { | 
            ||
| 15 | $check = new PDOCheck($connection['dsn'], $connection['username'], $connection['password'], $connection['timeout']);  | 
            ||
| 16 |             $this->checks[sprintf('pdo_%s', $name)] = $check; | 
            ||
| 17 | }  | 
            ||
| 18 | }  | 
            ||
| 19 | |||
| 28 |