17 lines
400 B
17 lines
400 B
<?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;
|
|
}
|
|
}
|
|
|