chore: fix formatting

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh 2025-09-24 11:29:36 -04:00 committed by GitHub
parent 5131897997
commit f5039750b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -81,12 +81,12 @@ class FileSize implements ICheck {
}
if ($size !== '' && is_numeric($size)) {
$this->size = Util::numericToNumber($size);
$this->size = Util::numericToNumber($size);
} else {
// No valid size header found
$this->size = false;
}
return $this->size;
}