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 — master ( 58984c...debcc9 )
by
unknown
16:45 queued 06:41
created
src/Client.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             return $metric;
52 52
         }
53 53
 
54
-        throw new \BadMethodCallException('No such StatsD factory method: ' . $name);
54
+        throw new \BadMethodCallException('No such StatsD factory method: '.$name);
55 55
     }
56 56
 
57 57
 
@@ -105,13 +105,13 @@  discard block
 block discarded – undo
105 105
         $size = 0;
106 106
 
107 107
         foreach ($data as $metric) {
108
-            $len = strlen($glue . $metric);
108
+            $len = strlen($glue.$metric);
109 109
 
110 110
             if (($size + $len) > $maxLength) {
111 111
                 $result[++$index] = $metric; // Fill the next part of the result
112 112
                 $size = $len;
113 113
             } else {
114
-                $result[$index] .= ($size != 0 ? $glue : '') . $metric;
114
+                $result[$index] .= ($size != 0 ? $glue : '').$metric;
115 115
                 $size += $len;
116 116
             }
117 117
         }
Please login to merge, or discard this patch.
src/Datadog/Metric.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@
 block discarded – undo
31 31
             $tags = [];
32 32
 
33 33
             array_walk($this->tags, function ($tagValue, $tagName) use (&$tags) {
34
-                $tags[] = is_integer($tagName) ? $tagValue : $tagName . ':' . $tagValue;
34
+                $tags[] = is_integer($tagName) ? $tagValue : $tagName.':'.$tagValue;
35 35
             });
36 36
 
37
-            $result .= '|#' . implode(',', $tags);
37
+            $result .= '|#'.implode(',', $tags);
38 38
         }
39 39
 
40 40
         return $result;
Please login to merge, or discard this patch.
src/Metric.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         $result = sprintf('%s:%s|%s', $this->key, $this->value, $this->type);
42 42
 
43 43
         if ($this->sampleRate < 1.0) {
44
-            $result .= '|@' . $this->sampleRate;
44
+            $result .= '|@'.$this->sampleRate;
45 45
         }
46 46
 
47 47
         return $result;
Please login to merge, or discard this patch.