Passed
Pull Request — release-2.1 (#6759)
by Jon
06:58
created
Sources/Subs-Admin.php 1 patch
Braces   +12 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1232,7 +1232,8 @@  discard block
 block discarded – undo
1232 1232
 	}
1233 1233
 
1234 1234
 	// It's important to do the numbered ones before the named ones, or messes happen.
1235
-	uksort($substitutions, function($a, $b) {
1235
+	uksort($substitutions, function($a, $b)
1236
+	{
1236 1237
 		if (is_int($a) && is_int($b))
1237 1238
 			return $a > $b ? 1 : ($a < $b ? -1 : 0);
1238 1239
 		elseif (is_int($a))
@@ -1771,8 +1772,12 @@  discard block
 block discarded – undo
1771 1772
 		unset($mtime, $settingsFile, $settingsText);
1772 1773
 		$defined_vars = get_defined_vars();
1773 1774
 	}
1774
-	catch (Throwable $e) {}
1775
-	catch (ErrorException $e) {}
1775
+	catch (Throwable $e)
1776
+	{
1777
+}
1778
+	catch (ErrorException $e)
1779
+	{
1780
+}
1776 1781
 	if (isset($e))
1777 1782
 		return false;
1778 1783
 
@@ -1926,7 +1931,8 @@  discard block
 block discarded – undo
1926 1931
 	// For the same reason, replace literal returns and newlines with "\r" and "\n"
1927 1932
 	elseif (is_string($var) && (strpos($var, "\n") !== false || strpos($var, "\r") !== false))
1928 1933
 	{
1929
-		return strtr(preg_replace_callback('/[\r\n]+/', function($m) {
1934
+		return strtr(preg_replace_callback('/[\r\n]+/', function($m)
1935
+		{
1930 1936
 			return '\' . "' . strtr($m[0], array("\r" => '\r', "\n" => '\n')) . '" . \'';
1931 1937
 		}, $var), array("'' . " => '', " . ''" => ''));
1932 1938
 	}
@@ -2248,7 +2254,8 @@  discard block
 block discarded – undo
2248 2254
 	// Search for a working temp directory.
2249 2255
 	foreach ($temp_dir_options as $id_temp => $temp_option)
2250 2256
 	{
2251
-		switch ($temp_option) {
2257
+		switch ($temp_option)
2258
+		{
2252 2259
 			case 'cachedir':
2253 2260
 				$possible_temp = rtrim($cachedir, '/');
2254 2261
 				break;
Please login to merge, or discard this patch.