26 lines
446 B
PHP
26 lines
446 B
PHP
<?php
|
|
|
|
namespace OSS\Result;
|
|
|
|
|
|
use OSS\Model\WormConfig;
|
|
|
|
/**
|
|
* Class GetBucketWormResult
|
|
* @package OSS\Result
|
|
*/
|
|
class GetBucketWormResult extends Result
|
|
{
|
|
/**
|
|
* Parse bucket stat data
|
|
*
|
|
* @return WormConfig
|
|
*/
|
|
protected function parseDataFromResponse()
|
|
{
|
|
$content = $this->rawResponse->body;
|
|
$config = new WormConfig();
|
|
$config->parseFromXml($content);
|
|
return $config;
|
|
}
|
|
} |