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