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 ( 11fbde...e08f00 )
by Marco
01:44
created
src/functions.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
          *
24 24
          * @psalm-return Closure(): callable
25 25
          */
26
-        static function (
26
+        static function(
27 27
             callable $f,
28 28
             ?int $numberOfParameters = null,
29 29
             array $parameters = []
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             }
37 37
 
38 38
             /** @psalm-suppress MissingClosureReturnType */
39
-            return static function () use ($f, $numberOfParameters, $parameters, $innerCurry) {
39
+            return static function() use ($f, $numberOfParameters, $parameters, $innerCurry) {
40 40
                 /** @var array<int, mixed> $newParameters */
41 41
                 $newParameters = array_merge($parameters, func_get_args());
42 42
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * @psalm-suppress MissingClosureParamType
64 64
      * @psalm-suppress MissingClosureReturnType
65 65
      */
66
-    return static function (...$params) use ($f) {
66
+    return static function(...$params) use ($f) {
67 67
         if ([] === $params) {
68 68
             return $f();
69 69
         }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
         $firstApplication = $f($firstParam);
74 74
 
75
-        if (! is_callable($firstApplication)) {
75
+        if (!is_callable($firstApplication)) {
76 76
             return $firstApplication;
77 77
         }
78 78
 
Please login to merge, or discard this patch.