Completed
Branch master (b90fb1)
by Remy
05:03 queued 02:16
created
Services/ArrayAccessor.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -195,8 +195,9 @@
 block discarded – undo
195 195
      */
196 196
     public static function get_key_exist($array, $key, $default = null) {
197 197
 
198
-        if (isset($array[$key]))
199
-            return $array[$key];
198
+        if (isset($array[$key])) {
199
+                    return $array[$key];
200
+        }
200 201
 
201 202
         return $default;
202 203
 
Please login to merge, or discard this patch.