Removed constant type definition

This commit is contained in:
Chris Kankiewicz
2025-03-18 21:37:51 -07:00
parent c377d21b14
commit 4e8989b1b7

View File

@@ -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';