Completed
Push — master ( e24a9d...4513c4 )
by Vladimir
02:04
created
src/allejo/stakx/Utilities/ArrayUtilities.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,8 @@
 block discarded – undo
20 20
      */
21 21
     public static function array_safe_get(array $array, $key, $default = null)
22 22
     {
23
-        if (isset($array[$key])) {
23
+        if (isset($array[$key]))
24
+        {
24 25
             return $array[$key];
25 26
         }
26 27
 
Please login to merge, or discard this patch.