mirror of
https://gitee.com/liuxioabin/fengketrade.git
synced 2026-04-17 12:57:32 +08:00
17 lines
342 B
PHP
17 lines
342 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace OSS\Result;
|
||
|
|
|
||
|
|
use OSS\Model\LiveChannelListInfo;
|
||
|
|
|
||
|
|
class ListLiveChannelResult extends Result
|
||
|
|
{
|
||
|
|
protected function parseDataFromResponse()
|
||
|
|
{
|
||
|
|
$content = $this->rawResponse->body;
|
||
|
|
$channelList = new LiveChannelListInfo();
|
||
|
|
$channelList->parseFromXml($content);
|
||
|
|
return $channelList;
|
||
|
|
}
|
||
|
|
}
|