Skip to content

Commit f7276ee

Browse files
committed
Helpers::getSupportedTypes() returns array [Closes #332]
1 parent 4ead20a commit f7276ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Forms/Helpers.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,6 @@ public static function getSingleType($reflection): ?string
302302
/** @internal */
303303
public static function getSupportedImages(): array
304304
{
305-
return array_map(fn($type) => Image::typeToMimeType($type), Image::getSupportedTypes());
305+
return array_values(array_map(fn($type) => Image::typeToMimeType($type), Image::getSupportedTypes()));
306306
}
307307
}

0 commit comments

Comments
 (0)