| Conditions | 3 |
| Paths | 4 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | public function __construct(array $configData) |
||
| 31 | { |
||
| 32 | $pool = array_key_exists('pool', $configData) ? $configData['pool'] : 'default'; |
||
| 33 | InputValidation::pool($pool); |
||
| 34 | $disable = array_key_exists('disable', $configData) ? $configData['disable'] : false; |
||
| 35 | InputValidation::disable($disable); |
||
| 36 | |||
| 37 | $this->pool = $pool; |
||
| 38 | $this->disable = $disable; |
||
| 39 | } |
||
| 40 | |||
| 59 |