You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
321 B

6 years ago
  1. <?php
  2. namespace OSS\Result;
  3. use OSS\Model\LiveChannelInfo;
  4. class PutLiveChannelResult extends Result
  5. {
  6. protected function parseDataFromResponse()
  7. {
  8. $content = $this->rawResponse->body;
  9. $channel = new LiveChannelInfo();
  10. $channel->parseFromXml($content);
  11. return $channel;
  12. }
  13. }