From 87458af80002e046c8a27bd10aba4f3387e65606 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Sat, 25 May 2024 22:09:50 +0200 Subject: [PATCH] Update screenshot format examples in config In the screenshot configuration of the utility settings, the example values for the screenshot format are updated to simple file extensions 'jpg', 'png', and 'webp', instead of the MIME types. --- src/Resources/config/definition/utils/screenshots.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resources/config/definition/utils/screenshots.php b/src/Resources/config/definition/utils/screenshots.php index 4132117..5dc710d 100644 --- a/src/Resources/config/definition/utils/screenshots.php +++ b/src/Resources/config/definition/utils/screenshots.php @@ -49,7 +49,7 @@ function getScreenshotsNode(string $info): ArrayNodeDefinition ->end() ->scalarNode('format') ->info('The format of the screenshot. Will convert the file if set.') - ->example(['image/jpg', 'image/png', 'image/webp']) + ->example(['jpg', 'png', 'webp']) ->end() ->scalarNode('reference') ->defaultNull()