15 lines
360 B
15 lines
360 B
<?php
|
|
|
|
|
|
include_once dirname(dirname(__FILE__)). "/Model/LiveChannelListInfo.php";
|
|
|
|
class ListLiveChannelResult extends Result
|
|
{
|
|
protected function parseDataFromResponse()
|
|
{
|
|
$content = $this->rawResponse->body;
|
|
$channelList = new LiveChannelListInfo();
|
|
$channelList->parseFromXml($content);
|
|
return $channelList;
|
|
}
|
|
}
|
|
|