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
342 B

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