PutSetDeleteResult.php 354 B

1234567891011121314151617181920
  1. <?php
  2. namespace OSS\Result;
  3. /**
  4. * Class PutSetDeleteResult
  5. * @package OSS\Result
  6. */
  7. class PutSetDeleteResult extends Result
  8. {
  9. /**
  10. * @return array()
  11. */
  12. protected function parseDataFromResponse()
  13. {
  14. $body = array('body' => $this->rawResponse->body);
  15. return array_merge($this->rawResponse->header, $body);
  16. }
  17. }