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 ( c36dc9...ef0c28 )
by Christian
02:21
created
src/Test/AbstractFormHandlerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
      */
166 166
     private function equalToErrors(): Callback
167 167
     {
168
-        return $this->callback(function ($error) {
168
+        return $this->callback(function($error) {
169 169
             if ($error instanceof FormError) {
170 170
                 foreach ($this->errors as &$data) {
171 171
                     if ($error->getMessage() === $data['message'] && $error->getMessageParameters() === $data['parameters']) {
Please login to merge, or discard this patch.