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
Pull Request — master (#7)
by Christian
02:17
created
src/Test/AbstractFormHandlerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@
 block discarded – undo
155 155
 
156 156
     private function equalToErrors(): Constraint
157 157
     {
158
-        return static::callback(function ($error) {
158
+        return static::callback(function($error) {
159 159
             if ($error instanceof FormError) {
160 160
                 foreach ($this->errors as &$data) {
161 161
                     if ($error->getMessage() === $data['message'] && $error->getMessageParameters() === $data['parameters']) {
Please login to merge, or discard this patch.
src/Model/BatchTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
     public function getSeconds(): int
59 59
     {
60
-        $seconds =  $this->getDay() * 86400;
60
+        $seconds = $this->getDay() * 86400;
61 61
 
62 62
         if (null !== $this->getTime()) {
63 63
             $time = clone $this->getTime();
Please login to merge, or discard this patch.