You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
19
vendor/oss-sdk/src/OSS/Result/GetLiveChannelHistoryResult.php
vendored
Executable file
19
vendor/oss-sdk/src/OSS/Result/GetLiveChannelHistoryResult.php
vendored
Executable file
@ -0,0 +1,19 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user