GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Branch dev (058cbe)
by Liuta
03:27
created
includes/class-xcloner-settings.php 3 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -93,12 +93,12 @@
 block discarded – undo
93 93
 
94 94
 			$path = sys_get_temp_dir();
95 95
 			if (!is_dir($path)) {
96
-			    try {
97
-                    mkdir($path);
98
-                    chmod($path, 0777);
99
-                }catch(Exception $e){
100
-			        //silent catch
101
-                }
96
+				try {
97
+					mkdir($path);
98
+					chmod($path, 0777);
99
+				}catch(Exception $e){
100
+					//silent catch
101
+				}
102 102
 			}
103 103
 
104 104
 			if (!is_dir($path) or !is_writeable($path)) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
 			    try {
97 97
                     mkdir($path);
98 98
                     chmod($path, 0777);
99
-                }catch(Exception $e){
99
+                }catch (Exception $e) {
100 100
 			        //silent catch
101 101
                 }
102 102
 			}
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
 			    try {
97 97
                     mkdir($path);
98 98
                     chmod($path, 0777);
99
-                }catch(Exception $e){
99
+                } catch(Exception $e){
100 100
 			        //silent catch
101 101
                 }
102 102
 			}
Please login to merge, or discard this patch.