Conditions | 4 |
Paths | 4 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 4.4661 |
Changes | 0 |
1 | <?php |
||
36 | 3 | public function onPing() |
|
37 | { |
||
38 | 3 | foreach ($this->connections as $connection) { |
|
39 | 3 | if (!$connection->isConnected()) { |
|
40 | 1 | continue; |
|
41 | } |
||
42 | |||
43 | try { |
||
44 | 2 | $connection->query($connection->getDatabasePlatform()->getDummySelectSQL()); |
|
45 | 2 | } catch (DBALException $e) { |
|
46 | 1 | $connection->close(); // close timed out connections so that using them connects again |
|
47 | } |
||
48 | 3 | } |
|
49 | 3 | } |
|
50 | } |
||
51 |