20 lines
393 B
20 lines
393 B
![]()
3 months ago
|
<?php
|
||
|
|
||
|
include_once dirname(dirname(__FILE__))."/Result/Result.php";
|
||
|
|
||
|
/**
|
||
|
* Class PutSetDeleteResult
|
||
|
* @package OSS\Result
|
||
|
*/
|
||
|
class PutSetDeleteResult extends Result
|
||
|
{
|
||
|
/**
|
||
|
* @return array()
|
||
|
*/
|
||
|
protected function parseDataFromResponse()
|
||
|
{
|
||
|
$body = array('body' => $this->rawResponse->body);
|
||
|
return array_merge($this->rawResponse->header, $body);
|
||
|
}
|
||
|
}
|