You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
482 B

6 years ago
  1. <?php
  2. namespace OSS\Result;
  3. /**
  4. * Class HeaderResult
  5. * @package OSS\Result
  6. * @link https://docs.aliyun.com/?spm=5176.383663.13.7.HgUIqL#/pub/oss/api-reference/object&GetObjectMeta
  7. */
  8. class HeaderResult extends Result
  9. {
  10. /**
  11. * 把返回的ResponseCore中的header作为返回数据
  12. *
  13. * @return array
  14. */
  15. protected function parseDataFromResponse()
  16. {
  17. return empty($this->rawResponse->header) ? array() : $this->rawResponse->header;
  18. }
  19. }