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