Skip to content

Commit 9878b63

Browse files
authored
Fix type error
1 parent 700ab6d commit 9878b63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Objects/FileObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getModifyAtForHumans(): string
3434

3535
public function getSizeKB(): int
3636
{
37-
return round($this->file->getSize() / 1024, 2);
37+
return intval($this->file->getSize() / 1024);
3838
}
3939

4040
public function getSizeForHumans(): string

0 commit comments

Comments
 (0)