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 ( 1e95b8...e09157 )
by Cees-Jan
03:36 queued 32s
created
src/TestCase.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             'w-h-p-t-u-' .
51 51
             uniqid() .
52 52
             DIRECTORY_SEPARATOR;
53
-        $this->tmpDir     = $this->baseTmpDir .
53
+        $this->tmpDir = $this->baseTmpDir .
54 54
             uniqid() .
55 55
             DIRECTORY_SEPARATOR;
56 56
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     protected function tearDown(): void
61 61
     {
62
-        if (! file_exists($this->baseTmpDir)) {
62
+        if (!file_exists($this->baseTmpDir)) {
63 63
             return;
64 64
         }
65 65
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         $directory = new FilesystemIterator($dir);
88 88
 
89 89
         foreach ($directory as $node) {
90
-            if (! $node instanceof SplFileInfo) {
90
+            if (!$node instanceof SplFileInfo) {
91 91
                 continue;
92 92
             }
93 93
 
@@ -96,23 +96,23 @@  discard block
 block discarded – undo
96 96
                 continue;
97 97
             }
98 98
 
99
-            if (! is_file($node->getPathname())) {
99
+            if (!is_file($node->getPathname())) {
100 100
                 continue;
101 101
             }
102 102
 
103
-            if (! unlink($node->getPathname())) {
103
+            if (!unlink($node->getPathname())) {
104 104
                 throw ErrorExceptionFactory::create('Error deleting file: ' . $node->getPathname());
105 105
             }
106 106
         }
107 107
 
108
-        if (! @rmdir($dir)) {
108
+        if (!@rmdir($dir)) {
109 109
             throw ErrorExceptionFactory::create('Error deleting directory: ' . $dir);
110 110
         }
111 111
     }
112 112
 
113 113
     final protected function getTmpDir(): string
114 114
     {
115
-        if (! file_exists($this->tmpDir) && ! @mkdir($this->tmpDir, self::DEFAULT_MODE, true)) {
115
+        if (!file_exists($this->tmpDir) && !@mkdir($this->tmpDir, self::DEFAULT_MODE, true)) {
116 116
             throw ErrorExceptionFactory::create('Error creating directory: ' . $this->tmpDir);
117 117
         }
118 118
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         $directory = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path));
134 134
 
135 135
         foreach ($directory as $node) {
136
-            if (! is_file($node->getPathname())) {
136
+            if (!is_file($node->getPathname())) {
137 137
                 continue;
138 138
             }
139 139
 
Please login to merge, or discard this patch.
src/Composer/Installer.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -62,17 +62,17 @@  discard block
 block discarded – undo
62 62
     public static function findEventListeners(Event $event): void
63 63
     {
64 64
         $rootPackagePath = dirname(self::getVendorDir($event->getComposer())) . DIRECTORY_SEPARATOR;
65
-        if (! file_exists($rootPackagePath . '/composer.json')) {
65
+        if (!file_exists($rootPackagePath . '/composer.json')) {
66 66
             return;
67 67
         }
68 68
 
69 69
         $jsonRaw = file_get_contents($rootPackagePath . '/composer.json');
70
-        if (! is_string($jsonRaw)) {
70
+        if (!is_string($jsonRaw)) {
71 71
             return;
72 72
         }
73 73
 
74 74
         $json = json_decode($jsonRaw, true);
75
-        if (! is_array($json)) {
75
+        if (!is_array($json)) {
76 76
             return;
77 77
         }
78 78
 
@@ -82,11 +82,11 @@  discard block
 block discarded – undo
82 82
             return;
83 83
         }
84 84
 
85
-        if (! array_key_exists('require-dev', $json)) {
85
+        if (!array_key_exists('require-dev', $json)) {
86 86
             return;
87 87
         }
88 88
 
89
-        if (! is_array($json['require-dev'])) {
89
+        if (!is_array($json['require-dev'])) {
90 90
             return;
91 91
         }
92 92
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     {
104 104
         $io->write('<info>wyrihaximus/test-utilities:</info> Adding <fg=cyan>make on-install-or-update || true</> to scripts');
105 105
         $composerJsonString = file_get_contents($rootPackagePath . '/composer.json');
106
-        if (! is_string($composerJsonString)) {
106
+        if (!is_string($composerJsonString)) {
107 107
             $io->write('<error>wyrihaximus/test-utilities:</error> Unable to read <fg=cyan>composer.json</> aborting');
108 108
 
109 109
             return;
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         $replacementComposerJsonString = json_encode($composerJson, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT);
125 125
         if (is_string($replacementComposerJsonString)) {
126 126
             $replacementComposerJsonHash = hash('sha512', $replacementComposerJsonString);
127
-            if (! hash_equals($composerJsonHash, $replacementComposerJsonHash)) {
127
+            if (!hash_equals($composerJsonHash, $replacementComposerJsonHash)) {
128 128
                 $replacementComposerJsonString = preg_replace('/^(  +?)\\1(?=[^ ])/m', '$1', $replacementComposerJsonString);
129 129
                 if (is_string($replacementComposerJsonString)) {
130 130
                     $io->write('<info>wyrihaximus/test-utilities:</info> Writing new <fg=cyan>composer.json</>');
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         $replacementComposerJsonString = json_encode($composerJson, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT);
147 147
         if (is_string($replacementComposerJsonString)) {
148 148
             $replacementComposerJsonHash = hash('sha512', $replacementComposerJsonString);
149
-            if (! hash_equals($composerJsonHash, $replacementComposerJsonHash)) {
149
+            if (!hash_equals($composerJsonHash, $replacementComposerJsonHash)) {
150 150
                 $replacementComposerJsonString = preg_replace('/^(  +?)\\1(?=[^ ])/m', '$1', $replacementComposerJsonString);
151 151
                 if (is_string($replacementComposerJsonString)) {
152 152
                     $io->write('<info>wyrihaximus/test-utilities:</info> Writing new <fg=cyan>composer.json</>');
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
     private static function getVendorDir(Composer $composer): string
190 190
     {
191 191
         $vendorDir = $composer->getConfig()->get('vendor-dir');
192
-        if ($vendorDir === '' || ! file_exists($vendorDir)) {
192
+        if ($vendorDir === '' || !file_exists($vendorDir)) {
193 193
             throw new Exception('vendor-dir must be a string');
194 194
         }
195 195
 
Please login to merge, or discard this patch.