17 lines
321 B
PHP
17 lines
321 B
PHP
|
|
<?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;
|
||
|
|
}
|
||
|
|
}
|