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