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 ( cc39b3...2b121f )
by Anton
04:25 queued 01:05
created
deps/vendor/symfony/service-contracts/ServiceLocatorTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
                 } else {
77 77
                     $type = (new \ReflectionFunction($factory))->getReturnType();
78 78
 
79
-                    $this->providedTypes[$name] = $type ? ($type->allowsNull() ? '?' : '').($type instanceof \ReflectionNamedType ? $type->getName() : $type) : '?';
79
+                    $this->providedTypes[$name] = $type ? ($type->allowsNull() ? '?' : '') . ($type instanceof \ReflectionNamedType ? $type->getName() : $type) : '?';
80 80
                 }
81 81
             }
82 82
         }
Please login to merge, or discard this patch.
deps/vendor/symfony/service-contracts/ServiceMethodsSubscriberTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,14 +51,14 @@
 block discarded – undo
51 51
 
52 52
             /* @var SubscribedService $attribute */
53 53
             $attribute = $attribute->newInstance();
54
-            $attribute->key ??= self::class.'::'.$method->name;
54
+            $attribute->key ??= self::class . '::' . $method->name;
55 55
             $attribute->type ??= $returnType instanceof \ReflectionNamedType ? $returnType->getName() : (string) $returnType;
56 56
             $attribute->nullable = $returnType->allowsNull();
57 57
 
58 58
             if ($attribute->attributes) {
59 59
                 $services[] = $attribute;
60 60
             } else {
61
-                $services[$attribute->key] = ($attribute->nullable ? '?' : '').$attribute->type;
61
+                $services[$attribute->key] = ($attribute->nullable ? '?' : '') . $attribute->type;
62 62
             }
63 63
         }
64 64
 
Please login to merge, or discard this patch.
deps/vendor/symfony/polyfill-intl-normalizer/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 use Symfony\Polyfill\Intl\Normalizer as p;
13 13
 
14 14
 if (\PHP_VERSION_ID >= 80000) {
15
-    return require __DIR__.'/bootstrap80.php';
15
+    return require __DIR__ . '/bootstrap80.php';
16 16
 }
17 17
 
18 18
 if (!function_exists('normalizer_is_normalized')) {
Please login to merge, or discard this patch.
polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return array (
3
+return array(
4 4
   'À' => 'À',
5 5
   'Á' => 'Á',
6 6
   'Â' => 'Â',
Please login to merge, or discard this patch.
polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return array (
3
+return array(
4 4
   ' ' => ' ',
5 5
   '¨' => ' ̈',
6 6
   'ª' => 'a',
Please login to merge, or discard this patch.
symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return array (
3
+return array(
4 4
   'À' => 'À',
5 5
   'Á' => 'Á',
6 6
   'Â' => 'Â',
Please login to merge, or discard this patch.
symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return array (
3
+return array(
4 4
   '̀' => 230,
5 5
   '́' => 230,
6 6
   '̂' => 230,
Please login to merge, or discard this patch.
deps/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,5 +15,5 @@
 block discarded – undo
15 15
     function normalizer_is_normalized(?string $string, ?int $form = p\Normalizer::FORM_C): bool { return p\Normalizer::isNormalized((string) $string, (int) $form); }
16 16
 }
17 17
 if (!function_exists('normalizer_normalize')) {
18
-    function normalizer_normalize(?string $string, ?int $form = p\Normalizer::FORM_C): string|false { return p\Normalizer::normalize((string) $string, (int) $form); }
18
+    function normalizer_normalize(?string $string, ?int $form = p\Normalizer::FORM_C): string | false { return p\Normalizer::normalize((string) $string, (int) $form); }
19 19
 }
Please login to merge, or discard this patch.
deps/vendor/symfony/polyfill-intl-normalizer/Normalizer.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -156,8 +156,8 @@  discard block
 block discarded – undo
156 156
 
157 157
                 $ucls = $combClass[$uchr] ?? 0;
158 158
 
159
-                if (isset($compMap[$lastUchr.$uchr]) && (!$lastUcls || $lastUcls < $ucls)) {
160
-                    $lastUchr = $compMap[$lastUchr.$uchr];
159
+                if (isset($compMap[$lastUchr . $uchr]) && (!$lastUcls || $lastUcls < $ucls)) {
160
+                    $lastUchr = $compMap[$lastUchr . $uchr];
161 161
                 } elseif ($lastUcls = $ucls) {
162 162
                     $tail .= $uchr;
163 163
                 } else {
@@ -185,13 +185,13 @@  discard block
 block discarded – undo
185 185
                 }
186 186
 
187 187
                 $L = 0xAC00 + ($L * 21 + $V) * 28 + $T;
188
-                $lastUchr = \chr(0xE0 | $L >> 12).\chr(0x80 | $L >> 6 & 0x3F).\chr(0x80 | $L & 0x3F);
188
+                $lastUchr = \chr(0xE0 | $L >> 12) . \chr(0x80 | $L >> 6 & 0x3F) . \chr(0x80 | $L & 0x3F);
189 189
             }
190 190
 
191 191
             $i += $ulen;
192 192
         }
193 193
 
194
-        return $result.$lastUchr.$tail;
194
+        return $result . $lastUchr . $tail;
195 195
     }
196 196
 
197 197
     private static function decompose($s, $c)
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
                         $i -= $j;
247 247
 
248 248
                         if (0 > $i) {
249
-                            $s = str_repeat(' ', -$i).$s;
249
+                            $s = str_repeat(' ', -$i) . $s;
250 250
                             $len -= $i;
251 251
                             $i = 0;
252 252
                         }
@@ -273,13 +273,13 @@  discard block
 block discarded – undo
273 273
                 $uchr = unpack('C*', $uchr);
274 274
                 $j = (($uchr[1] - 224) << 12) + (($uchr[2] - 128) << 6) + $uchr[3] - 0xAC80;
275 275
 
276
-                $uchr = "\xE1\x84".\chr(0x80 + (int) ($j / 588))
277
-                       ."\xE1\x85".\chr(0xA1 + (int) (($j % 588) / 28));
276
+                $uchr = "\xE1\x84" . \chr(0x80 + (int) ($j / 588))
277
+                       ."\xE1\x85" . \chr(0xA1 + (int) (($j % 588) / 28));
278 278
 
279 279
                 if ($j %= 28) {
280 280
                     $uchr .= $j < 25
281
-                        ? ("\xE1\x86".\chr(0xA7 + $j))
282
-                        : ("\xE1\x87".\chr(0x67 + $j));
281
+                        ? ("\xE1\x86" . \chr(0xA7 + $j))
282
+                        : ("\xE1\x87" . \chr(0x67 + $j));
283 283
                 }
284 284
             }
285 285
             if ($c) {
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 
302 302
     private static function getData($file)
303 303
     {
304
-        if (file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) {
304
+        if (file_exists($file = __DIR__ . '/Resources/unidata/' . $file . '.php')) {
305 305
             return require $file;
306 306
         }
307 307
 
Please login to merge, or discard this patch.