18 lines
400 B

2 months ago
<?php
include_once dirname(dirname(__FILE__)). "/Model/GetLiveChannelHistory.php";
class GetLiveChannelHistoryResult extends Result
{
/**
* @return
*/
protected function parseDataFromResponse()
{
$content = $this->rawResponse->body;
$channelList = new GetLiveChannelHistory();
$channelList->parseFromXml($content);
return $channelList;
}
}