From 4e8989b1b7a35e769adddd0a9fc0b8222de9f957 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Tue, 18 Mar 2025 21:37:51 -0700 Subject: [PATCH] Removed constant type definition --- app/src/ViewFunctions/SizeForHumans.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/ViewFunctions/SizeForHumans.php b/app/src/ViewFunctions/SizeForHumans.php index d260090..c3f2bf6 100644 --- a/app/src/ViewFunctions/SizeForHumans.php +++ b/app/src/ViewFunctions/SizeForHumans.php @@ -9,7 +9,7 @@ use Symfony\Component\Finder\SplFileInfo; class SizeForHumans extends ViewFunction { - private const array UNITS = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; + private const UNITS = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; protected string $name = 'size_for_humans';