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.
		
		
		
		
			
				
					20 lines
				
				352 B
			
		
		
			
		
	
	
					20 lines
				
				352 B
			|   
											8 months ago
										 | <?php | ||
|  | 
 | ||
|  | 
 | ||
|  | /** | ||
|  |  * Class CallbackResult | ||
|  |  * @package OSS\Result | ||
|  |  */ | ||
|  | class CallbackResult extends PutSetDeleteResult | ||
|  | { | ||
|  |     protected function isResponseOk() | ||
|  |     { | ||
|  |         $status = $this->rawResponse->status; | ||
|  |         if ((int)(intval($status) / 100) == 2 && (int)(intval($status)) !== 203) { | ||
|  |             return true; | ||
|  |         } | ||
|  |         return false; | ||
|  |     } | ||
|  | 
 | ||
|  | } |