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.
Completed
Push — dev-master ( 842215...468912 )
by Vijay
03:13
created
src/Enums/Enum.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,6 @@
 block discarded – undo
129 129
      * Make sure the keys are strings
130 130
      * Set the case according to the settings
131 131
      *
132
-     * @param return $values
133 132
      */
134 133
     public static function fixKeys()
135 134
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
             unset($values[$k]);
139 139
             if (!is_string($k)) {
140 140
                 if (!is_string($v)) {
141
-                    throw new \UnexpectedValueException(sprintf("Key '%s' for value '%s' is not a string!", print_r($k,1), print_r($v,1)));
141
+                    throw new \UnexpectedValueException(sprintf("Key '%s' for value '%s' is not a string!", print_r($k, 1), print_r($v, 1)));
142 142
                 } else {
143 143
                     // if the key is not a string, use the value if it is a string
144 144
                     $k = $v;
Please login to merge, or discard this patch.