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
Pull Request — master (#19)
by t
02:28
created
src/I.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,10 +75,10 @@
 block discarded – undo
75 75
                     } elseif (property_exists($mixed, $key) && null !== $mixed->$key) {
76 76
                         $mixed = $mixed->$key;
77 77
                     } else {
78
-                        try{
78
+                        try {
79 79
                             $temp = $mixed->$key;
80 80
                             return $temp;
81
-                        }catch(Exception $e){
81
+                        } catch (Exception $e) {
82 82
                             return $defaultValue;
83 83
                         }
84 84
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
                         try{
79 79
                             $temp = $mixed->$key;
80 80
                             return $temp;
81
-                        }catch(Exception $e){
81
+                        } catch(Exception $e){
82 82
                             return $defaultValue;
83 83
                         }
84 84
 
Please login to merge, or discard this patch.