Code styling 2
authorDaniel Rudolf <daniel.rudolf@eifel-online.com>
Thu, 21 Feb 2013 12:40:14 +0000 (13:40 +0100)
committerDaniel Rudolf <daniel.rudolf@eifel-online.com>
Thu, 21 Feb 2013 12:40:14 +0000 (13:40 +0100)
The other changes are kind of acceptable, this actually makes the code harder to read and less structurized.

wcfsetup/install/files/lib/util/ArrayUtil.class.php

index 79acaeb893844084e712aabed39d935a2f341a43..86c905717de3d916810fb1e7120945d73fbf663a 100644 (file)
@@ -206,19 +206,13 @@ final class ArrayUtil {
                // get function name
                $function = null;
                if ($method === 'value') {
-                       $function = ($callback === null)
-                               ? 'array_diff'
-                               : 'array_udiff';
+                       $function = ($callback === null) ? 'array_diff' : 'array_udiff';
                }
                else if ($method === 'key') {
-                       $function = ($callback === null)
-                               ? 'array_diff_key'
-                               : 'array_diff_ukey';
+                       $function = ($callback === null) ? 'array_diff_key' : 'array_diff_ukey';
                }
                else if ($method === 'assoc') {
-                       $function = ($callback === null)
-                               ? 'array_diff_assoc'
-                               : 'array_diff_uassoc';
+                       $function = ($callback === null) ? 'array_diff_assoc' : 'array_diff_uassoc';
                }
                
                // get parameters