Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
20 | public function check() |
||
21 | { |
||
22 | $connection = $this->manager->getConnection($this->connectionName); |
||
23 | $query = $connection->getDriver()->getDatabasePlatform()->getDummySelectSQL(); |
||
24 | |||
25 | // after dbal 2.11 fetchOne replace fetchColumn |
||
26 | if (method_exists($connection, 'fetchOne')) { |
||
27 | $connection->fetchOne($query); |
||
28 | } else { |
||
29 | $connection->fetchColumn($query); |
||
30 | } |
||
31 | |||
32 | return new Success(); |
||
33 | } |
||
34 | } |
||
35 |