| 1234567891011121314151617181920 | 
							- <?php
 
- namespace 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);
 
-     }
 
- }
 
 
  |