homepagePHP/app/Common/Util/OSS/Result/PutLiveChannelResult.php

17 lines
321 B
PHP
Executable File

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