Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
58 | public function getCurrentSchema() |
||
59 | { |
||
60 | try { |
||
61 | $schema = $this->zendAdapter->getDriver()->getConnection()->getCurrentSchema(); |
||
62 | } catch (\Exception $e) { |
||
63 | throw new Exception\RuntimeException("Cannot retrieve current schema:" . $e->getMessage()); |
||
64 | } |
||
65 | return $schema; |
||
66 | } |
||
67 | } |
||
68 |