admin/app/common/services/aliyunoss/OSS/Result/PutLiveChannelResult.php

17 lines
381 B
PHP

<?php
namespace app\common\services\aliyunoss\OSS\Result;
use app\common\services\aliyunoss\OSS\Model\LiveChannelInfo;
class PutLiveChannelResult extends Result
{
protected function parseDataFromResponse()
{
$content = $this->rawResponse->body;
$channel = new LiveChannelInfo();
$channel->parseFromXml($content);
return $channel;
}
}