From 6419156755687018a617f9c0b3805d2a864df872 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Sat, 25 May 2024 22:41:54 +0200 Subject: [PATCH] Update screenshot format examples in config (#206) 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()