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 ( 889309...7b78e2 )
by Enjoys
02:51
created
src/Dotenv.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,11 +86,11 @@  discard block
 block discarded – undo
86 86
         }
87 87
     }
88 88
 
89
-    public function handleValue(string $key, ?string $value): float|bool|int|string|null
89
+    public function handleValue(string $key, ?string $value): float | bool | int | string | null
90 90
     {
91 91
         if ($value !== null) {
92 92
             $quoted = null;
93
-            $value = preg_replace_callback('/^(?<quote>[\'"])?(?<value>.*)\1/', function ($matches) {
93
+            $value = preg_replace_callback('/^(?<quote>[\'"])?(?<value>.*)\1/', function($matches) {
94 94
                 return match ($matches['quote']) {
95 95
                     "'" => $matches['value'],
96 96
                     "\"" => strtr($matches['value'], self::CHARACTER_MAP)
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
     public function populate(
112 112
         string $key,
113
-        string|null $value,
113
+        string | null $value,
114 114
     ): void {
115 115
         $value = $this->handleValue($key, $value);
116 116
 
Please login to merge, or discard this patch.