Completed
Push — master ( 1111c2...4a619f )
by smiley
02:48
created
examples/functions.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,16 +52,14 @@
 block discarded – undo
52 52
 
53 53
 				if(!isset($arr2[$key]) || !is_array($arr2[$key])){
54 54
 					$diff[$key] = $value;
55
-				}
56
-				else{
55
+				} else{
57 56
 					$new_diff = array_diff_assoc_recursive($value, $arr2[$key], $identical);
58 57
 					if(!empty($new_diff)){
59 58
 						$diff[$key] = $new_diff;
60 59
 					}
61 60
 				}
62 61
 
63
-			}
64
-			else if(!array_key_exists($key, $arr2) || $arr2[$key] !== $value){
62
+			} else if(!array_key_exists($key, $arr2) || $arr2[$key] !== $value){
65 63
 				$diff[$key] = $value;
66 64
 			}
67 65
 
Please login to merge, or discard this patch.
src/MultiRequest.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,8 +188,7 @@
 block discarded – undo
188 188
 				$curl = curl_init($url);
189 189
 				curl_setopt_array($curl, $this->curl_options);
190 190
 				curl_multi_add_handle($this->curl_multi, $curl);
191
-			}
192
-			else{
191
+			} else{
193 192
 				// retry on next if we don't get what we expect
194 193
 				$this->createHandle();
195 194
 			}
Please login to merge, or discard this patch.
examples/GW2API/ItemMultiResponseHandler.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,8 +188,7 @@
 block discarded – undo
188 188
 				$curl = curl_init($url);
189 189
 				curl_setopt_array($curl, $this->curl_options);
190 190
 				curl_multi_add_handle($this->curl_multi, $curl);
191
-			}
192
-			else{
191
+			} else{
193 192
 				// retry on next if we don't get what we expect
194 193
 				$this->createHandle();
195 194
 			}
Please login to merge, or discard this patch.