| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | protected function generateBody(SimpleXMLElement $xmlBody) |
||
| 26 | { |
||
| 27 | $resultResponse = $xmlBody->addChild('readResultResponse'); |
||
| 28 | |||
| 29 | $xmlResultScore = $resultResponse->addChild('result') |
||
| 30 | ->addChild('resultScore'); |
||
| 31 | |||
| 32 | $xmlResultScore->addChild('language', 'en'); |
||
| 33 | $xmlResultScore->addChild('textString', $this->bodyParams); |
||
| 34 | } |
||
| 36 |