Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
18 | 16 | protected function validateConfig($config) |
|
19 | { |
||
20 | 16 | if (empty($config)) { |
|
21 | 2 | throw new MissingConfigException( |
|
22 | 2 | 'No config found' |
|
23 | ); |
||
24 | } |
||
25 | |||
26 | 16 | if (empty($config['type'])) { |
|
27 | 2 | throw new MissingConfigException( |
|
28 | 2 | 'No config key of "type" found in adaptor config array.' |
|
29 | ); |
||
30 | } |
||
31 | 16 | } |
|
32 | |||
43 |