| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | 1 | $this->headers->set('Content-type', 'text/xml; charset=' . $this->encoding); |
|
| 20 | 1 | } |
|
| 21 | |||
| 22 | /** |
||
| 23 | * Sends the response to the client and shuts down the environment |
||
| 24 | */ |
||
| 25 | public function sendContent() |
||
| 26 | { |
||
| 27 | echo '<?xml version="1.0" encoding="' . $this->encoding . '" standalone="yes"?>' . "\n"; |
||
| 28 | echo "<response>\n"; |
||
| 29 | |||
| 30 | foreach ($this->_data as $field => $value) { |
||
| 31 | echo $this->_render_tag($field, $value); |
||
| 32 | } |
||
| 63 |