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

21 lines
384 B
PHP

<?php
namespace app\common\services\aliyunoss\OSS\Result;
/**
* 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);
}
}