| Conditions | 3 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 14 |
| Ratio | 100 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function __construct($itemId, $config) { |
||
| 17 | |||
| 18 | if (array_key_exists('group', $config)) { |
||
| 19 | $this->group($config['group']); |
||
| 20 | unset($config['group']); |
||
| 21 | } |
||
| 22 | |||
| 23 | parent::__construct($itemId, $config); |
||
| 24 | |||
| 25 | if (array_key_exists('checked', $config)) { |
||
| 26 | $this->checked = true; |
||
| 27 | } |
||
| 28 | |||
| 29 | } |
||
| 30 | } |