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