| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | protected function parseContents(array $contents) |
||
| 14 | { |
||
| 15 | if (!isset($contents['article_definition']['parameter'])) { |
||
| 16 | return; |
||
| 17 | } |
||
| 18 | |||
| 19 | foreach ($contents['article_definition']['parameter'] as $param) { |
||
| 20 | $id = $param['id']; |
||
| 21 | $value = $param['value']; |
||
| 22 | $this->paramIdToValue[$id] = $value; |
||
| 23 | } |
||
| 35 |