Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function getAdapter() |
||
22 | { |
||
23 | if (isset($this->adapter)) { |
||
24 | return $this->adapter; |
||
25 | } else { |
||
26 | if ($this->adapterName) { |
||
27 | throw new \RuntimeException(sprintf('The specified adapter "%s" is not configured', $this->adapterName)); |
||
28 | } else { |
||
29 | throw new \RuntimeException('No adapter has been specified'); |
||
30 | } |
||
35 | } |