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 — v1.0 ( c1d345...53fcca )
by Rick
14:37 queued 04:42
created
Category
src/Rule/InArray.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,8 +78,8 @@
 block discarded – undo
78 78
      */
79 79
     protected function getMessageParameters()
80 80
     {
81
-        $quote = function ($value) {
82
-            return '"' . $value . '"';
81
+        $quote = function($value) {
82
+            return '"'.$value.'"';
83 83
         };
84 84
 
85 85
         return array_merge(parent::getMessageParameters(), [
Please login to merge, or discard this patch.
src/MessageStack.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
      */
99 99
     protected function format($message, array $parameters)
100 100
     {
101
-        $replace = function ($matches) use ($parameters) {
101
+        $replace = function($matches) use ($parameters) {
102 102
             if (array_key_exists($matches[1], $parameters)) {
103 103
                 return $parameters[$matches[1]];
104 104
             }
Please login to merge, or discard this patch.