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 ( f7e913...d65fbd )
by Enjoys
12:52
created
src/Dotenv.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
     public function loadEnv(bool $usePutEnv = false): void
50 50
     {
51
-        if ($usePutEnv){
51
+        if ($usePutEnv) {
52 52
             $this->flags = $this->flags | self::POPULATE_PUTENV;
53 53
         }
54 54
 
@@ -88,12 +88,12 @@  discard block
 block discarded – undo
88 88
         }
89 89
     }
90 90
 
91
-    public function handleValue(string $key, ?string $value): float|bool|int|string|null
91
+    public function handleValue(string $key, ?string $value): float | bool | int | string | null
92 92
     {
93 93
 
94 94
         if ($value !== null) {
95 95
             $quoted = 0;
96
-            $value = preg_replace_callback('/^(?<quote>[\'"])?(?<value>.*)\1/', function ($matches) {
96
+            $value = preg_replace_callback('/^(?<quote>[\'"])?(?<value>.*)\1/', function($matches) {
97 97
                 return match ($matches['quote']) {
98 98
                     "'" => $matches['value'],
99 99
                     "\"" => strtr($matches['value'], self::CHARACTER_MAP)
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
     public function populate(
116 116
         string $key,
117
-        string|null $value,
117
+        string | null $value,
118 118
     ): void {
119 119
         $value = $this->handleValue($key, $value);
120 120
 
Please login to merge, or discard this patch.