| 1234567891011121314151617181920212223 | 
							- <?php
 
- namespace OSS\Result;
 
- /**
 
-  * Class HeaderResult
 
-  * @package OSS\Result
 
-  * @link https://docs.aliyun.com/?spm=5176.383663.13.7.HgUIqL#/pub/oss/api-reference/object&GetObjectMeta
 
-  */
 
- class HeaderResult extends Result
 
- {
 
-     /**
 
-      * The returned ResponseCore header is used as the return data
 
-      *
 
-      * @return array
 
-      */
 
-     protected function parseDataFromResponse()
 
-     {
 
-         return empty($this->rawResponse->header) ? array() : $this->rawResponse->header;
 
-     }
 
- }
 
 
  |