<?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; } }