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
Branch master (dd3fc1)
by Iakov
04:37
created
src/Kami/Component/RequestProcessor/RequestProcessor.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
42 42
             if ($artifacts instanceof ArtifactCollection) {
43 43
                 $artifacts->forAll(function ($key, Artifact $artifact) {
44 44
                     if ($this->artifacts->containsKey($key)) {
45
-                       throw new ProcessingException(
46
-                           sprintf('Collection already contains artifact with key %s', $key)
47
-                       );
45
+                        throw new ProcessingException(
46
+                            sprintf('Collection already contains artifact with key %s', $key)
47
+                        );
48 48
                     }
49 49
                     $this->addArtifact($artifact);
50 50
                 });
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             $artifacts = $step->execute($request);
41 41
 
42 42
             if ($artifacts instanceof ArtifactCollection) {
43
-                $artifacts->forAll(function ($key, Artifact $artifact) {
43
+                $artifacts->forAll(function($key, Artifact $artifact) {
44 44
                     if ($this->artifacts->containsKey($key)) {
45 45
                        throw new ProcessingException(
46 46
                            sprintf('Collection already contains artifact with key %s', $key)
Please login to merge, or discard this patch.
src/Kami/Component/RequestProcessor/AbstractStrategy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
     public function getNextStep(): ?StepInterface
22 22
     {
23
-        if($this->steps->count() == 0) {
23
+        if ($this->steps->count() == 0) {
24 24
             return null;
25 25
         }
26 26
 
Please login to merge, or discard this patch.