16 lines
360 B

2 months ago
<?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;
}
}