Files
qlg.tsgz.moe/vendor/oss-sdk/src/OSS/Result/GetLiveChannelHistoryResult.php
2019-09-06 23:53:10 +08:00

20 lines
383 B
PHP
Executable File

<?php
namespace OSS\Result;
use OSS\Model\GetLiveChannelHistory;
class GetLiveChannelHistoryResult extends Result
{
/**
* @return
*/
protected function parseDataFromResponse()
{
$content = $this->rawResponse->body;
$channelList = new GetLiveChannelHistory();
$channelList->parseFromXml($content);
return $channelList;
}
}