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 ( 75d2a4...68b9aa )
by Anton
03:50
created
deps/vendor/symfony/process/Pipes/UnixPipes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,12 +37,12 @@
 block discarded – undo
37 37
 
38 38
     public function __sleep(): array
39 39
     {
40
-        throw new \BadMethodCallException('Cannot serialize '.__CLASS__);
40
+        throw new \BadMethodCallException('Cannot serialize ' . __CLASS__);
41 41
     }
42 42
 
43 43
     public function __wakeup()
44 44
     {
45
-        throw new \BadMethodCallException('Cannot unserialize '.__CLASS__);
45
+        throw new \BadMethodCallException('Cannot unserialize ' . __CLASS__);
46 46
     }
47 47
 
48 48
     public function __destruct()
Please login to merge, or discard this patch.
deps/vendor/symfony/process/Pipes/WindowsPipes.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -50,17 +50,17 @@  discard block
 block discarded – undo
50 50
             ];
51 51
             $tmpDir = sys_get_temp_dir();
52 52
             $lastError = 'unknown reason';
53
-            set_error_handler(function ($type, $msg) use (&$lastError) { $lastError = $msg; });
54
-            for ($i = 0;; ++$i) {
53
+            set_error_handler(function($type, $msg) use (&$lastError) { $lastError = $msg; });
54
+            for ($i = 0; ; ++$i) {
55 55
                 foreach ($pipes as $pipe => $name) {
56 56
                     $file = sprintf('%s\\sf_proc_%02X.%s', $tmpDir, $i, $name);
57 57
 
58
-                    if (!$h = fopen($file.'.lock', 'w')) {
59
-                        if (file_exists($file.'.lock')) {
58
+                    if (!$h = fopen($file . '.lock', 'w')) {
59
+                        if (file_exists($file . '.lock')) {
60 60
                             continue 2;
61 61
                         }
62 62
                         restore_error_handler();
63
-                        throw new RuntimeException('A temporary file could not be opened to write the process output: '.$lastError);
63
+                        throw new RuntimeException('A temporary file could not be opened to write the process output: ' . $lastError);
64 64
                     }
65 65
                     if (!flock($h, \LOCK_EX | \LOCK_NB)) {
66 66
                         continue 2;
@@ -90,12 +90,12 @@  discard block
 block discarded – undo
90 90
 
91 91
     public function __sleep(): array
92 92
     {
93
-        throw new \BadMethodCallException('Cannot serialize '.__CLASS__);
93
+        throw new \BadMethodCallException('Cannot serialize ' . __CLASS__);
94 94
     }
95 95
 
96 96
     public function __wakeup()
97 97
     {
98
-        throw new \BadMethodCallException('Cannot unserialize '.__CLASS__);
98
+        throw new \BadMethodCallException('Cannot unserialize ' . __CLASS__);
99 99
     }
100 100
 
101 101
     public function __destruct()
Please login to merge, or discard this patch.
deps/vendor/symfony/service-contracts/Attribute/SubscribedService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         public ?string $key = null,
41 41
         public ?string $type = null,
42 42
         public bool $nullable = false,
43
-        array|object $attributes = [],
43
+        array | object $attributes = [],
44 44
     ) {
45 45
         $this->attributes = \is_array($attributes) ? $attributes : [$attributes];
46 46
     }
Please login to merge, or discard this patch.
deps/vendor/symfony/service-contracts/Test/ServiceLocatorTestCase.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $i = 0;
56 56
         $locator = $this->getServiceLocator([
57
-            'foo' => function () use (&$i) {
57
+            'foo' => function() use (&$i) {
58 58
                 ++$i;
59 59
 
60 60
                 return 'bar';
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     public function testThrowsOnUndefinedInternalService()
70 70
     {
71 71
         $locator = $this->getServiceLocator([
72
-            'foo' => function () use (&$locator) { return $locator->get('bar'); },
72
+            'foo' => function() use (&$locator) { return $locator->get('bar'); },
73 73
         ]);
74 74
 
75 75
         if (!$this->getExpectedException()) {
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
     public function testThrowsOnCircularReference()
84 84
     {
85 85
         $locator = $this->getServiceLocator([
86
-            'foo' => function () use (&$locator) { return $locator->get('bar'); },
87
-            'bar' => function () use (&$locator) { return $locator->get('baz'); },
88
-            'baz' => function () use (&$locator) { return $locator->get('bar'); },
86
+            'foo' => function() use (&$locator) { return $locator->get('bar'); },
87
+            'bar' => function() use (&$locator) { return $locator->get('baz'); },
88
+            'baz' => function() use (&$locator) { return $locator->get('bar'); },
89 89
         ]);
90 90
 
91 91
         $this->expectException(ContainerExceptionInterface::class);
Please login to merge, or discard this patch.
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.