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
Push — master ( 468b8a...89d628 )
by Cees-Jan
04:06 queued 01:02
created
src/TestCase.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             'w-h-p-t-u-' .
53 53
             uniqid() .
54 54
             DIRECTORY_SEPARATOR;
55
-        $this->tmpDir     = $this->baseTmpDir .
55
+        $this->tmpDir = $this->baseTmpDir .
56 56
             uniqid() .
57 57
             DIRECTORY_SEPARATOR;
58 58
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     protected function tearDown(): void
63 63
     {
64
-        if (! file_exists($this->baseTmpDir)) {
64
+        if (!file_exists($this->baseTmpDir)) {
65 65
             return;
66 66
         }
67 67
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                 continue;
98 98
             }
99 99
 
100
-            if (! is_file($node->getPathname())) {
100
+            if (!is_file($node->getPathname())) {
101 101
                 continue;
102 102
             }
103 103
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
     final protected function getTmpDir(): string
111 111
     {
112
-        if (! file_exists($this->tmpDir)) {
112
+        if (!file_exists($this->tmpDir)) {
113 113
             mkdir($this->tmpDir, self::DEFAULT_MODE, true);
114 114
         }
115 115
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         $directory = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path));
131 131
 
132 132
         foreach ($directory as $node) {
133
-            if (! is_file($node->getPathname())) {
133
+            if (!is_file($node->getPathname())) {
134 134
                 continue;
135 135
             }
136 136
 
Please login to merge, or discard this patch.
etc/qa/composer-unused.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use ComposerUnused\ComposerUnused\Configuration\PatternFilter;
8 8
 use Webmozart\Glob\Glob;
9 9
 
10
-return static function (Configuration $config): Configuration {
10
+return static function(Configuration $config): Configuration {
11 11
     return $config
12 12
         ->addNamedFilter(NamedFilter::fromString('brandembassy/mockery-tools'))
13 13
         ->addNamedFilter(NamedFilter::fromString('ergebnis/composer-normalize'))
Please login to merge, or discard this patch.