Passed
Push — release-2.1 ( 91d4c2...954a20 )
by Jon
04:34 queued 11s
created
Sources/Subs-Admin.php 1 patch
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1234,7 +1234,8 @@  discard block
 block discarded – undo
1234 1234
 	// It's important to do the numbered ones before the named ones, or messes happen.
1235 1235
 	uksort(
1236 1236
 		$substitutions,
1237
-		function($a, $b) {
1237
+		function($a, $b)
1238
+		{
1238 1239
 			if (is_int($a) && is_int($b))
1239 1240
 				return $a > $b ? 1 : ($a < $b ? -1 : 0);
1240 1241
 			elseif (is_int($a))
@@ -1774,8 +1775,12 @@  discard block
 block discarded – undo
1774 1775
 		unset($mtime, $settingsFile, $settingsText);
1775 1776
 		$defined_vars = get_defined_vars();
1776 1777
 	}
1777
-	catch (Throwable $e) {}
1778
-	catch (ErrorException $e) {}
1778
+	catch (Throwable $e)
1779
+	{
1780
+}
1781
+	catch (ErrorException $e)
1782
+	{
1783
+}
1779 1784
 	if (isset($e))
1780 1785
 		return false;
1781 1786
 
@@ -1975,7 +1980,8 @@  discard block
 block discarded – undo
1975 1980
 			{
1976 1981
 				list($id, $text) = $token;
1977 1982
 
1978
-				switch ($id) {
1983
+				switch ($id)
1984
+				{
1979 1985
 					case T_COMMENT:
1980 1986
 					case T_DOC_COMMENT:
1981 1987
 						end($parts);
Please login to merge, or discard this patch.