| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class XmlService extends Service { |
||
| 16 | |||
| 17 | private $xmlVersion; |
||
| 18 | private $xmlEncoding; |
||
| 19 | private $xmlStandalone; |
||
| 20 | private $xmlIndentString = ' '; |
||
| 21 | |||
| 22 | public function __construct($xmlVersion = '1.0', $encoding = null, $standalone = null) { |
||
| 23 | $this->xmlVersion = $xmlVersion; |
||
| 24 | $this->xmlEncoding = $encoding; |
||
| 25 | $this->xmlStandalone = $standalone; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function write($rootElementName, $value, $contextUri = null) { |
||
| 38 | } |
||
| 39 | |||
| 41 |