| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function initSetConfigXml(array $parameters) |
||
| 21 | { |
||
| 22 | $parameters = Fluent($parameters); |
||
| 23 | $configXml = new SetConfigXMLParameters($parameters->get('meetingID')); |
||
| 24 | $rawXml = $parameters->xml; |
||
| 25 | if (!$parameters->xml instanceof \SimpleXMLElement) { |
||
| 26 | $rawXml = new \SimpleXMLElement($parameters->xml); |
||
| 27 | } |
||
| 28 | |||
| 29 | $configXml->setRawXml($rawXml); |
||
| 30 | |||
| 31 | return $configXml; |
||
| 32 | } |
||
| 33 | } |
||
| 34 |