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 (#210)
by
unknown
02:36
created
src/TestCase.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             'p-a-c-t-' .
52 52
             uniqid() .
53 53
             DIRECTORY_SEPARATOR;
54
-        $this->tmpDir     = $this->baseTmpDir .
54
+        $this->tmpDir = $this->baseTmpDir .
55 55
             uniqid() .
56 56
             DIRECTORY_SEPARATOR;
57 57
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
     protected function tearDown(): void
62 62
     {
63
-        if (! file_exists($this->baseTmpDir)) {
63
+        if (!file_exists($this->baseTmpDir)) {
64 64
             return;
65 65
         }
66 66
 
@@ -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
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         $directory = new RecursiveIteratorIterator($directory);
133 133
 
134 134
         foreach ($directory as $node) {
135
-            if (! is_file($node->getPathname())) {
135
+            if (!is_file($node->getPathname())) {
136 136
                 continue;
137 137
             }
138 138
 
Please login to merge, or discard this patch.