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 ( 9afe37...f3ad9d )
by joseph
9s
created
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.