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 ( 4d5462...b04125 )
by Marco
01:20
created
src/Basic/IsFloat.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,7 @@
 block discarded – undo
17 17
         $this->isAsAsserted = IsAsAsserted::withAssertionAndErrorFormatter(
18 18
             'is_float',
19 19
             is_callable($errorFormatter) ?
20
-                $errorFormatter :
21
-                function ($data) {
20
+                $errorFormatter : function($data) {
22 21
                     return [self::NOT_A_FLOAT];
23 22
                 }
24 23
         );
Please login to merge, or discard this patch.
src/Basic/ComposingAssertion.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     protected static function withTranslatorAndMessage(Translator $translator, string $message)
30 30
     {
31
-        return new static(function ($data) use ($translator, $message) {
31
+        return new static(function($data) use ($translator, $message) {
32 32
             return [$translator->translate($message)];
33 33
         });
34 34
     }
Please login to merge, or discard this patch.