diff --git a/src/FileHelper.php b/src/FileHelper.php index 546fb42..d1dc7ee 100644 --- a/src/FileHelper.php +++ b/src/FileHelper.php @@ -62,7 +62,7 @@ public static function getFileExtOnly(?string $sFilename = '', string $default = * * Конвертация размера файла в удобный для чтения формат. * - * @param mixed|null $bytes + * @param mixed $bytes * @param int $decimals * * @return string human readable file size (2.87 MB) @@ -71,7 +71,7 @@ public static function getFileExtOnly(?string $sFilename = '', string $default = * * @edit Leonid Sheikman */ - public static function getHumanFileSize(?mixed $bytes, int $decimals = 2): string + public static function getHumanFileSize(mixed $bytes, int $decimals = 2): string { if (null === $bytes) { return '0';