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 — develop ( a94b80...f507c7 )
by nguereza
01:38
created
src/Util/Helper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
         if (array_key_exists('unit', $matches)) {
127 127
             $unit = strtoupper($matches['unit']);
128 128
         }
129
-        return (int)(floatval($matches['size']) * pow(1024, $units[$unit]));
129
+        return (int) (floatval($matches['size']) * pow(1024, $units[$unit]));
130 130
     }
131 131
 
132 132
     /**
Please login to merge, or discard this patch.
src/Upload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
      */
199 199
     public function isValid(): bool
200 200
     {
201
-        if (! $this->isUploaded()) {
201
+        if (!$this->isUploaded()) {
202 202
             return false;
203 203
         }
204 204
         foreach ($this->files as $file) {
Please login to merge, or discard this patch.