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 ( 7287da...18db10 )
by joseph
02:16 queued 02:12
created
src/Psr4Validator.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
             $realPath,
114 114
             \RecursiveDirectoryIterator::SKIP_DOTS
115 115
         );
116
-        $iterator          = new \RecursiveIteratorIterator(
116
+        $iterator = new \RecursiveIteratorIterator(
117 117
             $directoryIterator,
118 118
             \RecursiveIteratorIterator::SELF_FIRST
119 119
         );
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -176,11 +176,11 @@
 block discarded – undo
176 176
     private function addMissingPathError(string $path, string $namespaceRoot, string $absPathRoot): void
177 177
     {
178 178
         $invalidPathMessage = "Namespace root '$namespaceRoot'".
179
-                              "\ncontains a path '$path''".
180
-                              "\nwhich doesn't exist\n";
179
+                                "\ncontains a path '$path''".
180
+                                "\nwhich doesn't exist\n";
181 181
         if (stripos($absPathRoot, "Magento") !== false) {
182 182
             $invalidPathMessage .= 'Magento\'s composer includes this by default, '
183
-                                   .'it should be removed from the psr-4 section';
183
+                                    .'it should be removed from the psr-4 section';
184 184
         }
185 185
         $this->missingPaths[$path] = $invalidPathMessage;
186 186
     }
Please login to merge, or discard this patch.
configDefaults/magento2/phpstan-magento2-bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 /* Find bootstrap path */
4 4
 $rootPath = realpath(dirname(__FILE__));
5
-while (!file_exists($rootPath . '/app/bootstrap.php') && $rootPath !== '/') {
5
+while (!file_exists($rootPath.'/app/bootstrap.php') && $rootPath !== '/') {
6 6
     $rootPath = realpath(dirname($rootPath));
7 7
 }
8 8
 
9 9
 /* Include Magento bootstrap file */
10
-require_once $rootPath . '/app/bootstrap.php';
10
+require_once $rootPath.'/app/bootstrap.php';
11 11
 
12 12
 /* Create git hook class autoloader */
13 13
 $_git_hook_loaded_class = [];
Please login to merge, or discard this patch.
src/Markdown/LinksChecker.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -175,14 +175,14 @@
 block discarded – undo
175 175
         #$start          = microtime(true);
176 176
         #fwrite(STDERR, "\n".'Validating link: '.$href);
177 177
         $context = stream_context_create([
178
-                                             'http' => [
179
-                                                 'method'           => 'HEAD',
180
-                                                 'protocol_version' => 1.1,
181
-                                                 'header'           => [
182
-                                                     'Connection: close',
183
-                                                 ],
184
-                                             ],
185
-                                         ]);
178
+                                                'http' => [
179
+                                                    'method'           => 'HEAD',
180
+                                                    'protocol_version' => 1.1,
181
+                                                    'header'           => [
182
+                                                        'Connection: close',
183
+                                                    ],
184
+                                                ],
185
+                                            ]);
186 186
         $result  = null;
187 187
         try {
188 188
             $headers = get_headers($href, 0, $context);
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
                 '',
125 125
                 \dirname($file)
126 126
             );
127
-            $start           .= '/'.\rtrim($relativeSubdirs, '/');
127
+            $start .= '/'.\rtrim($relativeSubdirs, '/');
128 128
         }
129 129
         $realpath = \realpath($start.'/'.$path);
130 130
         if (false === $realpath) {
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
                                                  ],
186 186
                                              ],
187 187
                                          ]);
188
-        $result  = null;
188
+        $result = null;
189 189
         try {
190 190
             $headers = get_headers($href, 0, $context);
191 191
             foreach ($headers as $header) {
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
             $href,
206 206
             var_export($result, true)
207 207
         );
208
-        $return   = 1;
208
+        $return = 1;
209 209
         #$time     = round(microtime(true) - $start, 2);
210 210
         #fwrite(STDERR, "\n".'Failed ('.$time.' seconds): '.$href);
211 211
     }
Please login to merge, or discard this patch.
src/PHPUnit/TestDox/TestResult.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     ): void {
75 75
         $this->testSuccesful                = false;
76 76
         $this->symbol                       = $symbol;
77
-        $this->additionalInformation        .= "\n".$additionalInformation;
77
+        $this->additionalInformation .= "\n".$additionalInformation;
78 78
         $this->additionalInformationVerbose = $additionalInformationVerbose;
79 79
     }
80 80
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
             \implode(
136 136
                 "\n",
137 137
                 \array_map(
138
-                    function (string $text) {
138
+                    function(string $text) {
139 139
                         return \sprintf('   │ %s', $text);
140 140
                     },
141 141
                     \explode("\n", $this->additionalInformation)
Please login to merge, or discard this patch.
src/PHPUnit/TestDox/CliTestDoxPrinter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         }
90 90
 
91 91
         $this->currentTestResult = new \EdmondsCommerce\PHPQA\PHPUnit\TestDox\TestResult(
92
-            function (string $color, string $buffer) {
92
+            function(string $color, string $buffer) {
93 93
                 return $this->formatWithColor($color, $buffer);
94 94
             },
95 95
             $className,
Please login to merge, or discard this patch.
src/PHPUnit/CheckAnnotations.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -98,11 +98,11 @@  discard block
 block discarded – undo
98 98
     private function checkFile(\SplFileInfo $fileInfo, string $annotation): void
99 99
     {
100 100
         $contents = (string)file_get_contents($fileInfo->getPathname());
101
-        if($this->isAnnotationInClassDocBlock($contents, $annotation) === true) {
101
+        if ($this->isAnnotationInClassDocBlock($contents, $annotation) === true) {
102 102
             return;
103 103
         }
104 104
 
105
-        $matches  = [];
105
+        $matches = [];
106 106
         preg_match_all(
107 107
             <<<REGEXP
108 108
 %(?<docblock>/\*(?:[^*]|\n|(?:\*(?:[^/]|\n)))*\*/)\s+?public\s+?function\s+?(?<method>.+?)\(%
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
             return false;
151 151
         }
152 152
         $docBlock = array_shift($matches['docblock']);
153
-        return strpos($docBlock, '@'. $annotation) !== false;
153
+        return strpos($docBlock, '@'.$annotation) !== false;
154 154
     }
155 155
 
156 156
 
Please login to merge, or discard this patch.